Update github workflows #328
Workflow file for this run
This file contains hidden or 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 - Test | |
| on: push | |
| jobs: | |
| test: | |
| name: Run elixir tests | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - name: Set up Elixir | |
| uses: erlef/setup-beam@v1 | |
| with: | |
| otp-version: 26.2.5 | |
| elixir-version: 1.14.5 | |
| - name: Install dependencies | |
| run: | |
| mix deps.get | |
| - name: Check code format | |
| run: mix format --check-formatted | |
| - name: Run tests | |
| run: mix test | |
| - name: Run dialyzer | |
| run: mix dialyzer --force-check --format dialyxir |