Skip to content

Commit e9fc9b7

Browse files
committed
Fix workflow
1 parent 3bc80b6 commit e9fc9b7

File tree

1 file changed

+12
-6
lines changed

1 file changed

+12
-6
lines changed

.github/workflows/ci.yaml

Lines changed: 12 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -8,12 +8,14 @@ jobs:
88
strategy:
99
matrix:
1010
otp:
11-
- "21.3"
12-
- "22.0.7"
13-
- "22.3"
14-
- "23.0.4"
15-
- "23.2.7.0"
16-
- "24.0"
11+
- "21"
12+
- "22"
13+
- "23"
14+
- "24"
15+
- "25"
16+
- "26"
17+
- "27"
18+
- "28"
1719

1820
container:
1921
image: erlang:${{ matrix.otp }}-alpine
@@ -26,9 +28,13 @@ jobs:
2628
run: rebar3 compile
2729

2830
- name: Linting
31+
# Linting works only with latest version
32+
if: ${{ matrix.otp == '28' }}
2933
run: rebar3 lint
3034

3135
- name: Tests
36+
env:
37+
IPINFO_TOKEN: ${{ secrets.IPINFO_TOKEN }}
3238
run: |
3339
rebar3 xref
3440
rebar3 dialyzer

0 commit comments

Comments
 (0)