Skip to content

Commit

Permalink
Update OTP-version running for github actions
Browse files Browse the repository at this point in the history
  • Loading branch information
sebastiw committed Dec 20, 2024
1 parent 2e78272 commit 1ad5c23
Showing 1 changed file with 11 additions and 5 deletions.
16 changes: 11 additions & 5 deletions .github/workflows/test.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -10,12 +10,18 @@ on:

jobs:
test:
runs-on: ubuntu-latest
name: Erlang/OTP 25.1 / rebar3 3.20.0
runs-on: ${{matrix.erlang.os}}
name: Erlang/OTP ${{matrix.erlang.otp}} / rebar3 ${{matrix.erlang.rebar3}}
strategy:
matrix:
erlang:
- otp: "27.1.2"
rebar3: "3.22.1"
os: ubuntu-24.04
steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v4
- uses: erlef/setup-beam@v1
with:
otp-version: '25.1'
rebar3-version: '3.20.0'
otp-version: ${{matrix.erlang.otp}}
rebar3-version: ${{matrix.erlang.rebar3}}
- run: rebar3 eunit

0 comments on commit 1ad5c23

Please sign in to comment.