Skip to content

Commit

Permalink
Updated CI/CD.
Browse files Browse the repository at this point in the history
  • Loading branch information
oubiwann committed Mar 20, 2024
1 parent 98859c4 commit cc59541
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions .github/workflows/cicd.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,15 +13,15 @@ on:
jobs:

builds:
name: New builds on OTP ${{ matrix.otp_version }} / ${{ matrix.os }}
name: Erlang ${{ matrix.otp_version }} build
runs-on: ubuntu-latest

strategy:
matrix:
otp_version: ['24', '25', '26']
otp_version: ['26', '25', '24']

steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v4
- uses: erlef/setup-beam@v1
with:
otp-version: ${{ matrix.otp_version }}
Expand All @@ -40,15 +40,15 @@ jobs:
run: rebar3 as test cover -v --min_coverage=0

old-builds:
name: Old builds on OTP ${{ matrix.otp_version }} / ${{ matrix.os }}
name: Erlang ${{ matrix.otp_version }} build
runs-on: ubuntu-20.04

strategy:
matrix:
otp_version: ['21.3', '22.3', '23.3']
otp_version: ['23', '22', '21']

steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v4
- uses: erlef/setup-beam@v1
with:
otp-version: ${{ matrix.otp_version }}
Expand Down

0 comments on commit cc59541

Please sign in to comment.