Skip to content

Commit

Permalink
Update CI
Browse files Browse the repository at this point in the history
  • Loading branch information
paulo-ferraz-oliveira committed Jul 27, 2023
1 parent 8a7b68c commit 529a1a0
Showing 1 changed file with 11 additions and 14 deletions.
25 changes: 11 additions & 14 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,29 +10,26 @@ on:

jobs:
build:
name: Test on OTP ${{ matrix.tuple.otp_version }} and ${{ matrix.tuple.os }}
runs-on: ${{ matrix.tuple.os }}
name: Test on OTP ${{ matrix.otp_version }} and ${{ matrix.os }}
runs-on: ${{ matrix.os }}

strategy:
fail-fast: false
matrix:
- tuple:
otp_version: 26
include:
- otp_version: 26
os: ubuntu-22.04
rebar3_version: 3.22
- tuple:
otp_version: 25
- otp_version: 25
os: ubuntu-22.04
rebar3_version: 3.22
- tuple:
otp_version: 24
- otp_version: 24
os: ubuntu-22.04
rebar3_version: 3.22
- tuple:
otp_version: 23
- otp_version: 23
os: ubuntu-20.04
rebar3_version: 3.18
- tuple:
otp_version: 22
- otp_version: 22
os: ubuntu-20.04
rebar3_version: 3.18

Expand All @@ -41,8 +38,8 @@ jobs:

- uses: erlef/setup-beam@v1
with:
otp-version: ${{ matrix.tuple.otp_version }}
rebar3-version: ${{ matrix.tuple.rebar3_version }}
otp-version: ${{ matrix.otp_version }}
rebar3-version: ${{ matrix.rebar3_version }}

- name: Compile
run: rebar3 compile
Expand Down

0 comments on commit 529a1a0

Please sign in to comment.