Files
starter-workflows/ci/erlang.yml
T

27 lines
375 B
YAML
Raw Normal View History

2020-03-17 11:17:19 +00:00
name: Erlang CI
on:
push:
2020-07-13 12:12:41 -07:00
branches: [ $default-branch ]
2020-03-17 11:17:19 +00:00
pull_request:
2020-07-13 12:12:41 -07:00
branches: [ $default-branch ]
2020-03-17 11:17:19 +00:00
2022-01-21 12:23:16 -08:00
permissions:
contents: read
2022-01-05 09:50:26 -08:00
2020-03-17 11:17:19 +00:00
jobs:
build:
runs-on: ubuntu-latest
container:
image: erlang:22.0.7
steps:
2022-03-28 13:10:48 -04:00
- uses: actions/checkout@v3
2020-03-17 11:17:19 +00:00
- name: Compile
run: rebar3 compile
- name: Run tests
run: rebar3 do eunit, ct