chore: major api refactor, flaky tests fixes and overall stability #61
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: ci | |
on: | |
push: | |
branches: [ master ] | |
pull_request: | |
branches: [ master ] | |
permissions: | |
contents: read | |
jobs: | |
tests: | |
name: test | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- uses: erlef/setup-beam@v1 | |
with: | |
elixir-version: '1.14.5' | |
otp-version: '26.0' | |
- run: docker-compose -f "test/compose_files/docker-compose.yml" up -d | |
- run: mix deps.get | |
- run: mix compile --warnings-as-errors | |
- run: mix test --warnings-as-errors |