Skip to content

Commit

Permalink
Add github actions
Browse files Browse the repository at this point in the history
  • Loading branch information
martinsumner committed May 28, 2022
1 parent 64f8f0c commit 190419b
Show file tree
Hide file tree
Showing 2 changed files with 27 additions and 0 deletions.
26 changes: 26 additions & 0 deletions .github/workflows/erlang.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,26 @@
name: Erlang CI

on:
push:
branches: [ develop-3.0 ]
pull_request:
branches: [ develop-3.0 ]


jobs:

build:

runs-on: ubuntu-latest

container:
image: erlang:22.3.3

steps:
- uses: actions/checkout@v2
- name: Compile
run: ./rebar3 compile
- name: Run xref and dialyzer
run: ./rebar3 do xref, dialyzer
- name: Run eunit
run: ./rebar3 do eunit
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -13,3 +13,4 @@ c_src/system
.rebar
_build
.DS_Store
rebar.lock

0 comments on commit 190419b

Please sign in to comment.