Skip to content

Commit

Permalink
fix
Browse files Browse the repository at this point in the history
  • Loading branch information
benoitc committed Oct 9, 2023
1 parent 9ad487c commit 250cdbb
Showing 1 changed file with 27 additions and 2 deletions.
29 changes: 27 additions & 2 deletions .github/workflows/erlang.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,8 +13,31 @@ jobs:
runs-on: ${{matrix.os}}
strategy:
matrix:
otp: ["20.3", "21.3", "22.2"]
rebar3: ['3.14.4']
otp: ["25.3", "26.1"]
rebar3: ['3.22.1']
os: [ubuntu-22.04]
steps:
- uses: actions/checkout@v4
- uses: erlef/setup-beam@v1
with:
otp-version: ${{matrix.otp}}
rebar3-version: ${{matrix.rebar3}}
- uses: awalsh128/cache-apt-pkgs-action@latest
with:
packages: python3 python3-httpbin
version: 1.1
- run: |
gunicorn -b 127.0.0.1:8000 -b unix:httpbin.sock httpbin:app&
- run: rebar3 xref
- run: rebar3 eunit
- run: rebar3 dialyzer
legacy:
name: Run checks and tests over ${{matrix.otp_vsn}} and ${{matrix.os}}
runs-on: ${{matrix.os}}
strategy:
matrix:
otp: ["22.3", "23.3", "24.3"]
rebar3: ['3.18.0']
os: [ubuntu-20.04]
steps:
- uses: actions/checkout@v4
Expand All @@ -31,3 +54,5 @@ jobs:
- run: rebar3 xref
- run: rebar3 eunit
- run: rebar3 dialyzer


0 comments on commit 250cdbb

Please sign in to comment.