-
Notifications
You must be signed in to change notification settings - Fork 45
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
a4a17fc
commit 53ec7fe
Showing
3 changed files
with
16 additions
and
8 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,23 +1,31 @@ | ||
name: Erlang CI | ||
|
||
on: | ||
push: | ||
branches: [ develop-3.0 ] | ||
pull_request: | ||
branches: [ develop-3.0 ] | ||
|
||
|
||
jobs: | ||
|
||
build: | ||
|
||
runs-on: ubuntu-latest | ||
|
||
strategy: | ||
fail-fast: false | ||
matrix: | ||
otp: | ||
- "22.3.4.24" | ||
|
||
container: | ||
image: erlang:22.3.3 | ||
image: erlang:${{ matrix.otp }} | ||
|
||
steps: | ||
- uses: actions/checkout@v2 | ||
- name: Compile | ||
run: rebar3 compile | ||
- name: Run tests | ||
run: rebar3 do xref, dialyzer, eunit | ||
- uses: lukka/get-cmake@latest | ||
- uses: actions/checkout@v2 | ||
- name: Compile | ||
run: ./rebar3 compile | ||
- name: Run xref, dialyzer and eunit | ||
run: ./rebar3 do xref, dialyzer, eunit |
Binary file not shown.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters