Skip to content

Commit 47c4aca

Browse files
authored
Merge pull request #92 from basho/develop-gha-otp25
OTP 25
2 parents fdd3a56 + a4ee02a commit 47c4aca

File tree

2 files changed

+7
-4
lines changed

2 files changed

+7
-4
lines changed

.github/workflows/erlang.yml

+5-4
Original file line numberDiff line numberDiff line change
@@ -17,18 +17,19 @@ jobs:
1717
fail-fast: false
1818
matrix:
1919
otp:
20-
- "24.2.1.0"
21-
- "23.3.4.11"
22-
- "22.3.4.24"
20+
- "25.1"
21+
- "24.3"
22+
- "22.3"
2323

2424
container:
2525
image: erlang:${{ matrix.otp }}
2626

2727
steps:
28+
- uses: lukka/get-cmake@latest
2829
- uses: actions/checkout@v2
2930
- name: Compile
3031
run: ./rebar3 compile
3132
- name: Run xref and dialyzer
3233
run: ./rebar3 do xref, dialyzer
3334
- name: Run eunit
34-
run: ./rebar3 eunit
35+
run: ./rebar3 as gha do eunit

rebar.config

+2
Original file line numberDiff line numberDiff line change
@@ -37,6 +37,8 @@
3737
]}.
3838

3939
{profiles, [
40+
41+
{gha, [{erl_opts, [{d, 'GITHUBEXCLUDE'}]}]},
4042

4143
{test, [
4244
{cover_enabled, true},

0 commit comments

Comments
 (0)