Skip to content

Commit cfebac7

Browse files
authored
Merge pull request #33 from UncleGrumpy/fix_workflow
Fix workflow for OTP 25
2 parents 2f5b9e3 + 7beaaf0 commit cfebac7

File tree

1 file changed

+10
-1
lines changed

1 file changed

+10
-1
lines changed

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

Lines changed: 10 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,6 +14,15 @@ jobs:
1414
strategy:
1515
matrix:
1616
otp: ["25", "26", "27", "28"]
17+
include:
18+
- otp: "25"
19+
make_jobs: "compile escript etest rel"
20+
- otp: "26"
21+
make_jobs: "all"
22+
- otp: "27"
23+
make_jobs: "all"
24+
- otp: "28"
25+
make_jobs: "all"
1726
permissions:
1827
contents: read
1928

@@ -49,4 +58,4 @@ jobs:
4958
5059
# Build
5160
- name: "Make"
52-
run: PATH="/tmp/rebar3:${PATH}" make
61+
run: PATH="/tmp/rebar3:${PATH}" make ${{ matrix.make_jobs }}

0 commit comments

Comments
 (0)