Skip to content

Commit

Permalink
Merge pull request #413 from ariel-anieli/github-actions
Browse files Browse the repository at this point in the history
Added GitHub actions as CI/CD
  • Loading branch information
prefiks authored Nov 19, 2024
2 parents fbf1e44 + 2ddcdee commit 374a733
Showing 1 changed file with 29 additions and 0 deletions.
29 changes: 29 additions & 0 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,29 @@
name: Integration tests

on:
pull_request:
branches:
- 'develop'
push:
branches:
- 'develop'

jobs:
build:
name: OTP ${{ matrix.otp_version }} on ${{ matrix.os }}
runs-on: ${{ matrix.os }}
container:
image: erlang:${{matrix.otp_version}}

strategy:
matrix:
otp_version: ['27', '25', '23']
os: [ubuntu-latest]

steps:
- uses: actions/checkout@v4

- name: Configure
run: ./configure
- name: Build
run: make

0 comments on commit 374a733

Please sign in to comment.