Skip to content

Commit

Permalink
Add GH action
Browse files Browse the repository at this point in the history
  • Loading branch information
madninja committed May 24, 2020
1 parent 5f53128 commit e5e924e
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 e5e924e

Please sign in to comment.