Skip to content

Commit 374a733

Browse files
authored
Merge pull request #413 from ariel-anieli/github-actions
Added GitHub actions as CI/CD
2 parents fbf1e44 + 2ddcdee commit 374a733

File tree

1 file changed

+29
-0
lines changed

1 file changed

+29
-0
lines changed

.github/workflows/main.yml

Lines changed: 29 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,29 @@
1+
name: Integration tests
2+
3+
on:
4+
pull_request:
5+
branches:
6+
- 'develop'
7+
push:
8+
branches:
9+
- 'develop'
10+
11+
jobs:
12+
build:
13+
name: OTP ${{ matrix.otp_version }} on ${{ matrix.os }}
14+
runs-on: ${{ matrix.os }}
15+
container:
16+
image: erlang:${{matrix.otp_version}}
17+
18+
strategy:
19+
matrix:
20+
otp_version: ['27', '25', '23']
21+
os: [ubuntu-latest]
22+
23+
steps:
24+
- uses: actions/checkout@v4
25+
26+
- name: Configure
27+
run: ./configure
28+
- name: Build
29+
run: make

0 commit comments

Comments
 (0)