Skip to content

Commit

Permalink
Fix CI
Browse files Browse the repository at this point in the history
CI is not working anymore.

Signed-off-by: Davide Bettio <[email protected]>
  • Loading branch information
bettio committed Jul 5, 2023
1 parent ecf7c61 commit 6eaf062
Showing 1 changed file with 8 additions and 5 deletions.
13 changes: 8 additions & 5 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,12 +3,13 @@ on: [push, pull_request]

jobs:
dialyzer:
runs-on: ubuntu-latest
runs-on: ubuntu-22.04
steps:
- uses: actions/checkout@v2
- uses: erlef/setup-beam@v1
with:
otp-version: 24.3
rebar3-version: 3.17
- name: Dialyzer
run: rebar3 dialyzer

Expand All @@ -22,30 +23,32 @@ jobs:
run: dev/check-fmt

test-linux:
runs-on: ubuntu-latest
runs-on: ubuntu-22.04
strategy:
matrix:
otp: [23.3]
otp: [24.3]
steps:
- uses: actions/checkout@v2
- uses: erlef/setup-beam@v1
with:
otp-version: ${{matrix.otp}}
rebar3-version: 3.17
- name: Compile
run: rebar3 compile
- name: Run tests
run: rebar3 eunit

test-linux-debug:
runs-on: ubuntu-latest
runs-on: ubuntu-22.04
strategy:
matrix:
otp: [23.3]
otp: [24.3]
steps:
- uses: actions/checkout@v2
- uses: erlef/setup-beam@v1
with:
otp-version: ${{matrix.otp}}
rebar3-version: 3.17
- name: Compile
run: rebar3 as debug compile
- name: Run tests
Expand Down

0 comments on commit 6eaf062

Please sign in to comment.