We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 376be9c commit 8820b1eCopy full SHA for 8820b1e
.github/workflows/test.yml
@@ -10,14 +10,28 @@ jobs:
10
test:
11
name: Elixir Tests
12
runs-on: ubuntu-latest
13
+ continue-on-error: ${{ matrix.experimental }}
14
env:
15
MIX_ENV: test
16
+ strategy:
17
+ fail-fast: true
18
+ matrix:
19
+ include:
20
+ - otp: "26.2.5.3"
21
+ elixir: "1.17.3"
22
+ experimental: false
23
+ - otp: "27.0.1"
24
25
+ experimental: true
26
+ - otp: "27.1"
27
28
29
steps:
30
- uses: actions/checkout@v4
31
- uses: erlef/setup-beam@v1
32
with:
- otp-version: "27.1"
- elixir-version: "1.17.3"
33
+ otp-version: ${{matrix.otp}}
34
+ elixir-version: ${{matrix.elixir}}
35
- uses: actions/cache@v4
36
id: cache
37
0 commit comments