We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 3bc80b6 commit e9fc9b7Copy full SHA for e9fc9b7
.github/workflows/ci.yaml
@@ -8,12 +8,14 @@ jobs:
8
strategy:
9
matrix:
10
otp:
11
- - "21.3"
12
- - "22.0.7"
13
- - "22.3"
14
- - "23.0.4"
15
- - "23.2.7.0"
16
- - "24.0"
+ - "21"
+ - "22"
+ - "23"
+ - "24"
+ - "25"
+ - "26"
17
+ - "27"
18
+ - "28"
19
20
container:
21
image: erlang:${{ matrix.otp }}-alpine
@@ -26,9 +28,13 @@ jobs:
26
28
run: rebar3 compile
27
29
30
- name: Linting
31
+ # Linting works only with latest version
32
+ if: ${{ matrix.otp == '28' }}
33
run: rebar3 lint
34
35
- name: Tests
36
+ env:
37
+ IPINFO_TOKEN: ${{ secrets.IPINFO_TOKEN }}
38
run: |
39
rebar3 xref
40
rebar3 dialyzer
0 commit comments