Skip to content

Commit

Permalink
Add Github Actions test run (#29)
Browse files Browse the repository at this point in the history
* Add Github Actions test run
* Limit to OTP 24-27 for rebar3/GH action compatibility
  • Loading branch information
rmpalomino authored Jul 22, 2024
1 parent 144b476 commit e95be59
Showing 1 changed file with 23 additions and 0 deletions.
23 changes: 23 additions & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,23 @@
---
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: [24, 25, 26, 27]
os: [ubuntu-latest]
steps:
- uses: actions/checkout@v4
- run: export
- run: make test

0 comments on commit e95be59

Please sign in to comment.