Skip to content

Commit 0641960

Browse files
committed
add GH workflow
1 parent 83af66a commit 0641960

1 file changed

Lines changed: 22 additions & 0 deletions

File tree

.github/workflows/test.yml

Lines changed: 22 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -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

Comments
 (0)