Skip to content

Commit 5e48cda

Browse files
committed
Update CI
1 parent 8375229 commit 5e48cda

File tree

1 file changed

+6
-3
lines changed

1 file changed

+6
-3
lines changed

.github/workflows/elixir.yml

Lines changed: 6 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -11,14 +11,17 @@ jobs:
1111

1212
name: Build and test
1313
runs-on: ubuntu-latest
14-
14+
strategy:
15+
matrix:
16+
otp: ['25.0.4'] # Define the OTP version [required]
17+
elixir: ['1.14.1'] # Define the elixir version [required]
1518
steps:
1619
- uses: actions/checkout@v2
1720
- name: Set up Elixir
1821
uses: erlef/setup-beam@v1
1922
with:
20-
elixir-version: '1.12.3' # Define the elixir version [required]
21-
otp-version: '24.1' # Define the OTP version [required]
23+
otp-version: ${{matrix.otp}}
24+
elixir-version: ${{matrix.elixir}}
2225
- name: Restore dependencies cache
2326
uses: actions/cache@v2
2427
with:

0 commit comments

Comments
 (0)