From 467a5b1b5a95f5226af3cf7afb0ad954037f2448 Mon Sep 17 00:00:00 2001 From: Duncan McGreggor Date: Mon, 4 Mar 2024 23:02:03 -0600 Subject: [PATCH] Okay, really made it like other projects this time. --- .github/workflows/cicd.yml | 11 ++++++----- 1 file changed, 6 insertions(+), 5 deletions(-) diff --git a/.github/workflows/cicd.yml b/.github/workflows/cicd.yml index 5e682fd..59e0e87 100644 --- a/.github/workflows/cicd.yml +++ b/.github/workflows/cicd.yml @@ -12,21 +12,22 @@ on: jobs: - core-builds: + builds: name: Erlang ${{ matrix.otp_version }} build runs-on: ubuntu-latest strategy: matrix: # One of the tests breaks on 26 - #otp_version: ['22', '23', '24', '25', '26'] - otp_version: ['22', '23', '24', '25'] + otp-version: ['24', '25', '26'] + #otp-version: ['24', '25'] + os: ['ubuntu-latest'] steps: - uses: actions/checkout@v4 - uses: erlef/setup-beam@v1 with: - otp-version: ${{ matrix.otp_version }} + otp-version: ${{ matrix.otp-version }} rebar3-version: '3.22' - name: Compile run: rebar3 compile @@ -47,7 +48,7 @@ jobs: strategy: matrix: - otp_version: ['21'] + otp_version: ['21', '22', '23'] steps: - uses: actions/checkout@v4