From 6cc2529023f0d4d8b2896f0667dbf7c187cb2f1b Mon Sep 17 00:00:00 2001 From: Jesper Louis Andersen Date: Tue, 15 Jun 2021 15:00:59 +0200 Subject: [PATCH] Move more into base. --- .github/workflows/ci.cue | 3 ++- .github/workflows/ci.yaml | 1 + 2 files changed, 3 insertions(+), 1 deletion(-) diff --git a/.github/workflows/ci.cue b/.github/workflows/ci.cue index 71c359e..3a1ba08 100644 --- a/.github/workflows/ci.cue +++ b/.github/workflows/ci.cue @@ -1,6 +1,7 @@ let OTP_Versions = { latest: [24.0] all: [18.3, 19.3, 20.3, 21.3, 22.3, 23.3, 24.0] + test: [23.3, 24.0] } name: "build" @@ -17,7 +18,7 @@ jobs: ci: { "runs-on": "${{matrix.os}}" container: image: "erlang:${{matrix.otp_vsn}}" strategy: matrix: { - otp_vsn: OTP_Versions.latest + otp_vsn: OTP_Versions.test os: ["ubuntu-latest"] } steps: [ diff --git a/.github/workflows/ci.yaml b/.github/workflows/ci.yaml index 2ebce0e..2f506f3 100644 --- a/.github/workflows/ci.yaml +++ b/.github/workflows/ci.yaml @@ -15,6 +15,7 @@ jobs: strategy: matrix: otp_vsn: + - 23.3 - 24.0 os: - ubuntu-latest