-
Notifications
You must be signed in to change notification settings - Fork 32
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
c97355b
commit 51b7a87
Showing
3 changed files
with
26 additions
and
11 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 |
---|---|---|
@@ -0,0 +1,23 @@ | ||
name: Erlang CI | ||
|
||
on: | ||
push: | ||
branches: [ develop-3.0 ] | ||
pull_request: | ||
branches: [ develop-3.0 ] | ||
|
||
jobs: | ||
|
||
build: | ||
|
||
runs-on: ubuntu-latest | ||
|
||
container: | ||
image: erlang:22.3.3 | ||
|
||
steps: | ||
- uses: actions/checkout@v2 | ||
- name: Compile | ||
run: rebar3 compile | ||
- name: Run tests | ||
run: rebar3 do xref, dialyzer, eunit |
This file was deleted.
Oops, something went wrong.
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