We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 1d4ac79 commit 24d39e2Copy full SHA for 24d39e2
1 file changed
.github/workflows/ci.yml
@@ -9,22 +9,22 @@ jobs:
9
strategy:
10
fail-fast: false
11
matrix:
12
- otp: ['19.3', '21.3', 24]
+ otp: [19, 20, 25, 26]
13
runs-on: ubuntu-22.04
14
container:
15
image: erlang:${{ matrix.otp }}
16
steps:
17
- uses: actions/checkout@v3
18
- if: matrix.otp < '20.3'
+ if: matrix.otp < 20
19
- uses: actions/checkout@v4
20
- if: matrix.otp >= '20.3'
+ if: matrix.otp >= 20
21
- run: make
22
- run: rebar3 compile
23
- run: rebar3 xref
24
- run: rebar3 dialyzer
25
- run: rebar3 eunit -v
26
- name: Send to Coveralls
27
- if: matrix.otp == 24
+ if: matrix.otp == 26
28
env:
29
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
30
run: |
0 commit comments