diff --git a/.github/workflows/erlang.yml b/.github/workflows/erlang.yml index 61102471..643494f6 100644 --- a/.github/workflows/erlang.yml +++ b/.github/workflows/erlang.yml @@ -10,15 +10,14 @@ jobs: strategy: fail-fast: false matrix: - otp: - - "26" + otp_version: [25, 26, 27] steps: - name: CHECKOUT uses: actions/checkout@v2 - name: CONFIGURE ERLANG uses: erlef/setup-beam@v1 with: - otp-version: ${{ matrix.otp }} + otp-version: ${{ matrix.otp_version }} - name: XREF run: make xref - name: DEPS @@ -37,7 +36,7 @@ jobs: uses: actions/upload-artifact@v2-preview if: failure() with: - name: ct-logs-${{matrix.otp}} + name: ct-logs-${{matrix.otp_version}} path: logs/* build-bazel: runs-on: ubuntu-20.04 @@ -45,8 +44,6 @@ jobs: fail-fast: false matrix: otp_major: - - "24" - - "25" - "26" steps: - name: CHECKOUT