Merge pull request #332 from martinsumner/mas-i331-gha

Switch to GHA
This commit is contained in:
Martin Sumner 2021-03-05 15:10:24 +00:00 committed by GitHub
commit 2c53c0a85a
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 23 additions and 6 deletions

23
.github/workflows/erlang.yml vendored Normal file
View file

@ -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

View file

@ -1,6 +0,0 @@
language: erlang
otp_release:
- 20.3.8
script:
- chmod u+x rebar3
- ./rebar3 do upgrade, compile, dialyzer, xref, eunit