We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 64f8f0c commit 190419bCopy full SHA for 190419b
.github/workflows/erlang.yml
@@ -0,0 +1,26 @@
1
+name: Erlang CI
2
+
3
+on:
4
+ push:
5
+ branches: [ develop-3.0 ]
6
+ pull_request:
7
8
9
10
+jobs:
11
12
+ build:
13
14
+ runs-on: ubuntu-latest
15
16
+ container:
17
+ image: erlang:22.3.3
18
19
+ steps:
20
+ - uses: actions/checkout@v2
21
+ - name: Compile
22
+ run: ./rebar3 compile
23
+ - name: Run xref and dialyzer
24
+ run: ./rebar3 do xref, dialyzer
25
+ - name: Run eunit
26
+ run: ./rebar3 do eunit
.gitignore
@@ -13,3 +13,4 @@ c_src/system
.rebar
_build
.DS_Store
+rebar.lock
0 commit comments