Skip to content

Commit

Permalink
Merge pull request #9 from lrascao/feature/github-actions
Browse files Browse the repository at this point in the history
Enable Github CI check on pull requests to master
  • Loading branch information
lukebakken authored Oct 22, 2020
2 parents 2d2b2e3 + 1fd752f commit 8ef5404
Showing 1 changed file with 18 additions and 0 deletions.
18 changes: 18 additions & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
name: CI

on:
push:
pull_request:
branches: [ master ]

jobs:
build:
runs-on: ubuntu-latest
container:
image: erlang:21.3
steps:
- uses: actions/checkout@v2
- name: Compile
run: rebar3 compile
- name: Run tests, dialyzer
run: rebar3 do eunit,dialyzer

0 comments on commit 8ef5404

Please sign in to comment.