Skip to content

Commit

Permalink
Run CI in github actions
Browse files Browse the repository at this point in the history
  • Loading branch information
alexandre-kivra committed Oct 28, 2019
1 parent 8f58b8c commit 49df191
Showing 1 changed file with 27 additions and 0 deletions.
27 changes: 27 additions & 0 deletions .github/workflows/erlang.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,27 @@
name: Erlang CI

on: [push]

jobs:

build_and_test:

runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v1
- name: Compile
run: make
- name: Run xref
run: make xref
- name: Run elvis
run: make elvis_rock

dialyze:

runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v1
- name: Run dialyzer
run: make dialyze

0 comments on commit 49df191

Please sign in to comment.