diff options
-rw-r--r-- | .github/workflows/ci.yml | 17 |
1 files changed, 17 insertions, 0 deletions
diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml new file mode 100644 index 0000000..243ec60 --- /dev/null +++ b/.github/workflows/ci.yml @@ -0,0 +1,17 @@ +name: CI + +on: + push: + branches: + - '*' + pull_request: + +jobs: + test: + runs-on: ubuntu-latest + container: + image: erlang:22.1 + steps: + - uses: actions/checkout@v1 + - run: rebar3 compile + - run: rebar3 eunit |