We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 91ec5fc commit b62aabeCopy full SHA for b62aabe
1 file changed
.github/workflows/elixir.yml
@@ -9,15 +9,20 @@ jobs:
9
runs-on: ubuntu-latest
10
strategy:
11
matrix:
12
- otp: ['22.3', '23.2']
13
- elixir: ['1.9.x', '1.10.x', '1.11.x']
+ otp: ['22.3', '23.3', '24.2']
+ elixir: ['1.9.x', '1.13.x']
14
+ include:
15
+ - otp: '24.2'
16
+ elixir: '1.13.x'
17
+ latest: true
18
steps:
19
- uses: actions/checkout@v2
20
- uses: erlef/setup-beam@v1
21
with:
22
otp-version: ${{matrix.otp}}
23
elixir-version: ${{matrix.elixir}}
24
- run: mix deps.get
- - run: mix format --check-formatted --dry-run
25
+ - if: ${{ matrix.latest }}
26
+ run: mix format --check-formatted --dry-run
27
- run: mix test
28
0 commit comments