
* 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>
29 lines
424 B
YAML
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
|