1 parent 83af66a commit 0641960Copy full SHA for 0641960
1 file changed
.github/workflows/test.yml
@@ -0,0 +1,22 @@
1
+name: Erlang CI
2
+
3
+on:
4
+ pull_request:
5
+ push:
6
+ branches:
7
+ - master
8
9
+jobs:
10
+ build:
11
+ strategy:
12
+ matrix:
13
+ platform: [ubuntu-latest]
14
+ otp-version: [25, 26, 27]
15
+ runs-on: ${{ matrix.platform }}
16
+ container:
17
+ image: erlang:${{ matrix.otp-version }}
18
+ steps:
19
+ - name: Checkout
20
+ uses: actions/checkout@v4
21
+ - name: Compile and Test
22
+ run: make all
0 commit comments