forked from folsom-project/bear
-
Notifications
You must be signed in to change notification settings - Fork 0
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
9c7b657
commit 1712b2c
Showing
4 changed files
with
41 additions
and
1 deletion.
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,40 @@ | ||
name: Erlang CI | ||
|
||
on: | ||
push: | ||
branches: | ||
- nhse-develop | ||
- nhse-develop-3.2 | ||
- nhse-develop-3.4 | ||
pull_request: | ||
branches: | ||
- nhse-develop | ||
- nhse-develop-3.2 | ||
- nhse-develop-3.4 | ||
|
||
jobs: | ||
|
||
build: | ||
|
||
name: Test on ${{ matrix.os }} with OTP ${{ matrix.otp }} | ||
runs-on: ${{ matrix.os }} | ||
|
||
strategy: | ||
fail-fast: false | ||
matrix: | ||
otp: [24, 26] | ||
os: [ubuntu-latest] | ||
|
||
steps: | ||
- uses: lukka/get-cmake@latest | ||
- uses: actions/checkout@v4 | ||
- name: Install Erlang/OTP | ||
uses: erlef/setup-beam@v1 | ||
with: | ||
otp-version: ${{ matrix.otp }} | ||
- name: Compile | ||
run: ./rebar3 compile | ||
- name: Run xref and dialyzer | ||
run: ./rebar3 do xref, dialyzer | ||
- name: Run eunit | ||
run: ./rebar3 as gha do eunit |
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 +1,2 @@ | ||
_build/ | ||
rebar.lock |
This file was deleted.
Oops, something went wrong.