Skip to content

Commit d84c8d9

Browse files
authored
Merge pull request #270 from basho/develop-gha-otp25
OTP 25
2 parents 245135e + 12a2514 commit d84c8d9

2 files changed

Lines changed: 6 additions & 4 deletions

File tree

.github/workflows/erlang.yml

Lines changed: 5 additions & 4 deletions
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

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -30,6 +30,7 @@
3030
[
3131
{erl_opts, [warnings_as_errors]}
3232
]},
33+
{gha, [{erl_opts, [{d, 'GITHUBEXCLUDE'}]}]},
3334
{test,
3435
[
3536
{deps,

0 commit comments

Comments
 (0)