Files
starter-workflows/ci/erlang.yml
Christopher Schleiden abf7f258d1 Use $default-branch token
2020-07-13 12:12:41 -07:00

24 lines
344 B
YAML

name: Erlang CI
on:
push:
branches: [ $default-branch ]
pull_request:
branches: [ $default-branch ]
jobs:
build:
runs-on: ubuntu-latest
container:
image: erlang:22.0.7
steps:
- uses: actions/checkout@v2
- name: Compile
run: rebar3 compile
- name: Run tests
run: rebar3 do eunit, ct