Skip to content

Commit 89ee367

Browse files
authored
Merge pull request #47 from UncleGrumpy/build_test_workflow
Fix workflow for OTP 25
2 parents 05e0191 + 1f35e51 commit 89ee367

File tree

1 file changed

+11
-1
lines changed

1 file changed

+11
-1
lines changed

.github/workflows/build-and-test.yaml

Lines changed: 11 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,6 +15,16 @@ jobs:
1515
matrix:
1616
otp: ["25", "26", "27", "28"]
1717

18+
include:
19+
- otp: "25"
20+
make_jobs: "compile etest"
21+
- otp: "26"
22+
make_jobs: "all"
23+
- otp: "27"
24+
make_jobs: "all"
25+
- otp: "28"
26+
make_jobs: "all"
27+
1828
steps:
1929
# Setup
2030
- name: "Checkout repo"
@@ -47,4 +57,4 @@ jobs:
4757
4858
# Build
4959
- name: "Make"
50-
run: PATH="/tmp/rebar3:${PATH}" make all
60+
run: PATH="/tmp/rebar3:${PATH}" make ${{ matrix.make_jobs }}

0 commit comments

Comments
 (0)