Switch to GHA

This commit is contained in:
Martin Sumner 2021-03-05 14:47:42 +00:00
parent 489d89fb16
commit f726f81bde
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