-
Notifications
You must be signed in to change notification settings - Fork 215
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Move to a GitHub action (instead of container-based) CI approach
Also, that GitHub action is now the "official" action for Erlang+rebar3 CI, as per EEF
- Loading branch information
1 parent
10b88a8
commit f17db74
Showing
2 changed files
with
5 additions
and
23 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 |
---|---|---|
|
@@ -11,14 +11,16 @@ jobs: | |
ci: | ||
name: Run checks and tests over ${{matrix.otp_vsn}} and ${{matrix.os}} | ||
runs-on: ${{matrix.os}} | ||
container: | ||
image: erlang:${{matrix.otp_vsn}} | ||
strategy: | ||
matrix: | ||
otp_vsn: [19.3, 20.3, 21.3, 22.3, 23.0] | ||
otp_vsn: [20, 21, 22, 23] | ||
os: [ubuntu-latest] | ||
steps: | ||
- uses: actions/checkout@v2 | ||
- uses: erlef/[email protected] | ||
with: | ||
otp-version: ${{matrix.otp_vsn}} | ||
rebar3-version: '3.14' | ||
- run: rebar3 as test xref | ||
- run: rebar3 as test dialyzer | ||
- run: rebar3 as test ct |
This file was deleted.
Oops, something went wrong.