Skip to content

Commit

Permalink
Merge pull request #7 from helium/madninja/gh-action
Browse files Browse the repository at this point in the history
Add GH action
  • Loading branch information
madninja authored May 28, 2020
2 parents 5f53128 + e5e924e commit 3cc7531
Showing 1 changed file with 22 additions and 0 deletions.
22 changes: 22 additions & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,22 @@
name: CI

on:
push:
branches: [ master ]
pull_request:
branches: [ master ]

jobs:

ci:
runs-on: ubuntu-latest
container: madninja/builder-erlang:1

steps:
- uses: actions/checkout@v2

- name: Dialyzer
run: rebar3 dialyzer

- name: Run tests
run: rebar3 do eunit, ct

0 comments on commit 3cc7531

Please sign in to comment.