Skip to content

Commit

Permalink
checkout@v3 for otp 18 & 19
Browse files Browse the repository at this point in the history
  • Loading branch information
etrepum committed Mar 21, 2024
1 parent bc6ac7f commit 004080b
Showing 1 changed file with 18 additions and 1 deletion.
19 changes: 18 additions & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -23,10 +23,27 @@ jobs:
- "22"
- "21"
- "20"
steps:
- uses: actions/checkout@v4
- run: make test
- run: make edoc
- run: REBAR=rebar make test
test-eol:
name: test ${{matrix.otp}} on ${{matrix.os}}
runs-on: ${{matrix.os}}
container:
image: erlang:${{matrix.otp}}
strategy:
fail-fast: false
matrix:
os:
- ubuntu-latest
otp:
- "19"
- "18"
steps:
- uses: actions/checkout@v4
# The old containers can't run checkout@v4
- uses: actions/checkout@v3
- run: make test
- run: make edoc
- run: REBAR=rebar make test

0 comments on commit 004080b

Please sign in to comment.