Skip to content

Commit

Permalink
Test with OTP 26
Browse files Browse the repository at this point in the history
  • Loading branch information
carlosedp committed Jan 8, 2024
1 parent f0c9f23 commit 300d41a
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions .github/workflows/erlang.yml
Original file line number Diff line number Diff line change
@@ -1,17 +1,17 @@
on:
push:
branches: [ '*' ]
branches: ["*"]
pull_request:
branches: [ '*' ]
branches: ["*"]

jobs:
test:
runs-on: ubuntu-latest
name: Erlang/OTP ${{matrix.otp}} / rebar3 ${{matrix.rebar3}}
name: Erlang/OTP ${{ matrix.otp }} / rebar3 ${{ matrix.rebar3 }}
strategy:
matrix:
otp: ['23', '24', '25']
rebar: ['3.19.0']
otp: ["23", "24", "25", "26"]
rebar: ["3.19.0"]
steps:
- name: Checkout code
uses: actions/checkout@v3
Expand All @@ -20,7 +20,7 @@ jobs:
uses: erlef/setup-beam@v1
with:
otp-version: ${{matrix.otp}}
rebar3-version: ${{matrix.rebar3}}
rebar3-version: ${{ matrix.rebar3 }}

- name: Run tests
run: rebar3 do eunit, ct

0 comments on commit 300d41a

Please sign in to comment.