From 1d268898e7a870bef24cdf25cbef3c259cce3dd1 Mon Sep 17 00:00:00 2001 From: Christian Wesselhoeft Date: Sat, 2 Nov 2019 17:08:49 -0600 Subject: Add GitHub workflow for CI --- .github/workflows/ci.yml | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) create mode 100644 .github/workflows/ci.yml 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 -- cgit v1.2.3