Skip to content

Commit

Permalink
Test on 27
Browse files Browse the repository at this point in the history
  • Loading branch information
kjnilsson committed Aug 14, 2024
1 parent e95ab7b commit b6ab41b
Showing 1 changed file with 3 additions and 6 deletions.
9 changes: 3 additions & 6 deletions .github/workflows/erlang.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand All @@ -37,16 +36,14 @@ 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
strategy:
fail-fast: false
matrix:
otp_major:
- "24"
- "25"
- "26"
steps:
- name: CHECKOUT
Expand Down

0 comments on commit b6ab41b

Please sign in to comment.