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-14 18:11:40 +00:00
branches: [ $default-branch ]
2020-03-17 11:17:19 +00:00
pull_request:
2020-07-14 18:11:40 +00:00
branches: [ $default-branch ]
2020-03-17 11:17:19 +00:00
2022-03-30 09:50:11 +00:00
permissions:
contents: read
2020-03-17 11:17:19 +00:00
jobs:
build:
runs-on: ubuntu-latest
container:
image: erlang:22.0.7
steps:
2022-03-28 17:11:12 +00: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