Use Elixir 1.20 in CI #80
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
| on: [push, pull_request] | |
| jobs: | |
| test: | |
| runs-on: ubuntu-latest | |
| name: OTP ${{matrix.otp}} / Elixir ${{matrix.elixir}} | |
| strategy: | |
| matrix: | |
| include: | |
| - elixir: 1.20.x | |
| otp: 29.x | |
| check_formatted: true | |
| - elixir: 1.19.x | |
| otp: 28.x | |
| - elixir: 1.18.x | |
| otp: 27.x | |
| - elixir: 1.17.x | |
| otp: 27.x | |
| - elixir: 1.16.x | |
| otp: 26.x | |
| steps: | |
| - uses: actions/checkout@v6 | |
| - uses: erlef/setup-beam@v1 | |
| with: | |
| otp-version: ${{matrix.otp}} | |
| elixir-version: ${{matrix.elixir}} | |
| - run: mix deps.get | |
| - name: Check Formatting | |
| run: mix format --check-formatted | |
| if: matrix.check_formatted | |
| - run: mix test | |
| - run: mix dialyzer |