Skip to content

Commit

Permalink
Add Github Actions test run
Browse files Browse the repository at this point in the history
* Add Github Actions test run on erlcloud supported versions + OTP 26
  • Loading branch information
rmpalomino committed Jul 18, 2024
1 parent 144b476 commit 55b0c37
Showing 1 changed file with 22 additions and 0 deletions.
22 changes: 22 additions & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,22 @@
---
name: build
on:
push:
branches:
- master
pull_request:
branches:
- master
jobs:
ci:
name: Run checks and tests over ${{matrix.otp_vsn}} and ${{matrix.os}}
runs-on: ${{matrix.os}}
container:
image: erlang:${{matrix.otp_vsn}}
strategy:
matrix:
otp_vsn: [19.3, 20.3, 21.3, 22.3, 23.3, 24.0, 26]
os: [ubuntu-latest]
steps:
- uses: actions/checkout@v2
- run: make test

0 comments on commit 55b0c37

Please sign in to comment.