Skip to content

Commit

Permalink
Merge pull request #26 from rabbitmq/ci
Browse files Browse the repository at this point in the history
GitHub Actions: Test against Erlang/OTP 27
  • Loading branch information
dumbbell authored Jul 16, 2024
2 parents c20d3c8 + 10fa53d commit c64fc84
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/docs.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -14,8 +14,8 @@ jobs:
- uses: actions/checkout@v4
- uses: erlef/setup-beam@v1
with:
otp-version: 25
rebar3-version: '3.18.0'
otp-version: 27
rebar3-version: '3.23.0'

- name: Change doc version to "Development branch"
run: sed -E -i -e 's/^@version.*/@version Development branch/' doc/overview.edoc
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/test.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ jobs:

strategy:
matrix:
otp_version: [24, 25, 26]
otp_version: [24, 25, 26, 27]
os: [ubuntu-latest, windows-latest]
exclude:
# `ct_slave` fails to start Erlang nodes on Windows with Erlang 24.
Expand All @@ -23,15 +23,15 @@ jobs:
os: windows-latest

env:
RUN_DIALYZER_ON_OTP_RELEASE: 26
RUN_DIALYZER_ON_OTP_RELEASE: 27

steps:
- uses: actions/checkout@v4
- uses: erlef/setup-beam@v1
id: install-erlang
with:
otp-version: ${{matrix.otp_version}}
rebar3-version: '3.20.0'
rebar3-version: '3.23.0'

- name: Restore Dialyzer PLT files from cache
uses: actions/cache@v4
Expand Down

0 comments on commit c64fc84

Please sign in to comment.