Skip to content

Commit b62aabe

Browse files
committed
ci: update build matrix
1 parent 91ec5fc commit b62aabe

1 file changed

Lines changed: 8 additions & 3 deletions

File tree

.github/workflows/elixir.yml

Lines changed: 8 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -9,15 +9,20 @@ jobs:
99
runs-on: ubuntu-latest
1010
strategy:
1111
matrix:
12-
otp: ['22.3', '23.2']
13-
elixir: ['1.9.x', '1.10.x', '1.11.x']
12+
otp: ['22.3', '23.3', '24.2']
13+
elixir: ['1.9.x', '1.13.x']
14+
include:
15+
- otp: '24.2'
16+
elixir: '1.13.x'
17+
latest: true
1418
steps:
1519
- uses: actions/checkout@v2
1620
- uses: erlef/setup-beam@v1
1721
with:
1822
otp-version: ${{matrix.otp}}
1923
elixir-version: ${{matrix.elixir}}
2024
- run: mix deps.get
21-
- run: mix format --check-formatted --dry-run
25+
- if: ${{ matrix.latest }}
26+
run: mix format --check-formatted --dry-run
2227
- run: mix test
2328

0 commit comments

Comments
 (0)