diff options
author | Christian Wesselhoeft <hi@xtian.us> | 2019-11-02 17:08:49 -0600 |
---|---|---|
committer | Louis Pilfold <louis@lpil.uk> | 2019-11-13 22:40:31 +0000 |
commit | 1d268898e7a870bef24cdf25cbef3c259cce3dd1 (patch) | |
tree | e1c7e9e4213a67bf26551e810420940f65246e7a /.github | |
parent | 0a25b0f6d6abc17f4e5d02e093a4f66d47415ae4 (diff) | |
download | gleam_stdlib-1d268898e7a870bef24cdf25cbef3c259cce3dd1.tar.gz gleam_stdlib-1d268898e7a870bef24cdf25cbef3c259cce3dd1.zip |
Add GitHub workflow for CI
Diffstat (limited to '.github')
-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 |