leveled/.github/workflows/erlang.yml
Martin Sumner ed0301e2cf
Mas i335 otp24 (#336)
* Address OTP24 warnings, ct and eunit paths

* Reorg to add OTP 24 support

* Update VOLUME.md

* Correct broken refs

* Update README.md

* CI on all main branches

Co-authored-by: Ulf Wiger <ulf@wiger.net>
2021-05-25 13:41:20 +01:00

29 lines
424 B
YAML

name: Erlang CI
on:
push:
branches:
- develop-3.1
- develop-3.0
- develop-2.9
pull_request:
branches:
- develop-3.1
- develop-3.0
- develop-2.9
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