Skip to content

Commit 8ae053f

Browse files
committed
We no longer build on R20
1 parent a57d070 commit 8ae053f

File tree

1 file changed

+19
-20
lines changed

1 file changed

+19
-20
lines changed

.github/workflows/ci.yml

Lines changed: 19 additions & 20 deletions
Original file line numberDiff line numberDiff line change
@@ -3,32 +3,31 @@ name: CI
33
on: [push, pull_request]
44

55
jobs:
6-
76
tests:
87
name: Tests
98
strategy:
109
fail-fast: false
1110
matrix:
12-
otp: ['20', '25', '26', '27', '28']
11+
otp: ["25", "26", "27", "28"]
1312
runs-on: ubuntu-24.04
1413
container:
1514
image: public.ecr.aws/docker/library/erlang:${{ matrix.otp }}
1615
steps:
17-
- uses: actions/checkout@v4
18-
- run: make
19-
- run: rebar3 compile
20-
- run: rebar3 xref
21-
- run: rebar3 dialyzer
22-
- run: rebar3 eunit -v
23-
- name: Send to Coveralls
24-
if: matrix.otp == 27
25-
env:
26-
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
27-
run: |
28-
COVERALLS=true rebar3 as test coveralls send
29-
curl -v -k https://coveralls.io/webhook \
30-
--header "Content-Type: application/json" \
31-
--data '{"repo_name":"$GITHUB_REPOSITORY",
32-
"repo_token":"$GITHUB_TOKEN",
33-
"payload":{"build_num":$GITHUB_RUN_ID,
34-
"status":"done"}}'
16+
- uses: actions/checkout@v4
17+
- run: make
18+
- run: rebar3 compile
19+
- run: rebar3 xref
20+
- run: rebar3 dialyzer
21+
- run: rebar3 eunit -v
22+
- name: Send to Coveralls
23+
if: matrix.otp == 27
24+
env:
25+
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
26+
run: |
27+
COVERALLS=true rebar3 as test coveralls send
28+
curl -v -k https://coveralls.io/webhook \
29+
--header "Content-Type: application/json" \
30+
--data '{"repo_name":"$GITHUB_REPOSITORY",
31+
"repo_token":"$GITHUB_TOKEN",
32+
"payload":{"build_num":$GITHUB_RUN_ID,
33+
"status":"done"}}'

0 commit comments

Comments
 (0)