Skip to content

Commit 4de82ae

Browse files
Add CI
1 parent 4eceaa5 commit 4de82ae

File tree

1 file changed

+28
-0
lines changed

1 file changed

+28
-0
lines changed

.github/workflows/ci.yml

Lines changed: 28 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,28 @@
1+
name: CI
2+
3+
on:
4+
push:
5+
branches: [ main ]
6+
pull_request:
7+
branches: [ main ]
8+
workflow_dispatch:
9+
10+
jobs:
11+
12+
build:
13+
14+
runs-on: ubuntu-latest
15+
16+
container:
17+
image: erlang:27
18+
19+
steps:
20+
- uses: actions/checkout@v4
21+
- name: Compile
22+
run: make
23+
- name: Proper tests
24+
run: make proper && make proper
25+
- name: Common tests
26+
run: make ct
27+
- name: Dialyzer
28+
run: make dialyze

0 commit comments

Comments
 (0)