Skip to content

Commit

Permalink
ci: update workflows to run under Erlang/OTP 27 where needed
Browse files Browse the repository at this point in the history
  • Loading branch information
keynslug committed Dec 24, 2024
1 parent 7db14ad commit 8450e1b
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 9 deletions.
10 changes: 4 additions & 6 deletions .github/workflows/run_elvis.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -7,11 +7,9 @@ jobs:
runs-on: ubuntu-latest

container:
image: erlang:25.3
image: erlang:26

steps:
- uses: actions/checkout@v1
- run: |
./scripts/elvis-check.sh $GITHUB_BASE_REF
- run: |
make erlfmt-check
- uses: actions/checkout@v4
- run: ./scripts/elvis-check.sh $GITHUB_BASE_REF
- run: make erlfmt-check
9 changes: 6 additions & 3 deletions .github/workflows/run_test_case.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -7,12 +7,15 @@ jobs:
run_test_case:

runs-on: ubuntu-latest
strategy:
matrix:
erlang-vsn: ['26', '27']

container:
image: erlang:25.3
image: erlang:${{ matrix.erlang-vsn }}

steps:
- uses: actions/checkout@v1
- uses: actions/checkout@v4
- name: Code dialyzer
run: |
make dialyzer
Expand All @@ -24,5 +27,5 @@ jobs:
make cover
- uses: actions/upload-artifact@v4
with:
name: cover
name: cover-${{ matrix.erlang-vsn }}
path: _build/test/cover

0 comments on commit 8450e1b

Please sign in to comment.