diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 04152fd..e00e522 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -9,12 +9,15 @@ jobs: strategy: fail-fast: false matrix: - otp: ['19.3', '21.3', 24] + otp: ['19.3', '21.3', 25] runs-on: ubuntu-20.04 container: image: erlang:${{ matrix.otp }} steps: + - uses: actions/checkout@v3 + if: matrix.otp < '20.3' - uses: actions/checkout@v4 + if: matrix.otp >= '20.3' - run: ./configure - run: make - run: rebar3 compile