We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 21fdee5 commit 3f11cc4Copy full SHA for 3f11cc4
.github/workflows/erlang.yml
@@ -0,0 +1,47 @@
1
+name: Erlang CI
2
+
3
+on:
4
+ push:
5
+ pull_request:
6
7
+jobs:
8
9
+ build:
10
+ runs-on: ubuntu-latest
11
+ strategy:
12
+ matrix:
13
+ erlang: [ 25,26,27 ]
14
15
+ container:
16
+ image: erlang:${{ matrix.erlang }}
17
18
+ steps:
19
+ - uses: actions/checkout@v2
20
+ - run: rebar3 compile
21
22
+ test:
23
24
25
26
27
28
29
30
31
32
33
+ - run: rebar3 eunit
34
35
36
+ verify:
37
38
39
40
41
42
43
44
45
46
47
+ - run: rebar3 proper
0 commit comments