2019-08-06 16:37:30 -07:00
|
|
|
name: Erlang CI
|
2019-07-29 09:38:23 -07:00
|
|
|
|
2019-08-06 16:37:30 -07:00
|
|
|
on: [push]
|
2019-07-29 09:38:23 -07:00
|
|
|
|
|
|
|
|
jobs:
|
|
|
|
|
|
|
|
|
|
build:
|
2019-08-06 16:37:30 -07:00
|
|
|
|
2019-07-29 09:38:23 -07:00
|
|
|
runs-on: ubuntu-latest
|
|
|
|
|
|
2019-08-20 14:32:36 -06:00
|
|
|
container:
|
|
|
|
|
image: erlang:22.0.7
|
|
|
|
|
|
2019-08-06 16:37:30 -07:00
|
|
|
steps:
|
2019-12-24 14:22:22 -08:00
|
|
|
- uses: actions/checkout@v2
|
2019-07-29 09:38:23 -07:00
|
|
|
- name: Compile
|
2019-08-20 14:32:36 -06:00
|
|
|
run: rebar3 compile
|
2019-07-29 09:38:23 -07:00
|
|
|
- name: Run tests
|
2019-08-20 14:32:36 -06:00
|
|
|
run: rebar3 do eunit, ct
|