Skip to content

Commit

Permalink
GitHub Actions
Browse files Browse the repository at this point in the history
  • Loading branch information
zmstone committed Oct 9, 2024
1 parent 35fc117 commit 1b8318c
Showing 1 changed file with 26 additions and 0 deletions.
26 changes: 26 additions & 0 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,26 @@
---
name: build
on:
push:
branches:
- master
pull_request:
branches:
- master
jobs:
ci:
name: CI
runs-on: ${{matrix.os}}
strategy:
fail-fast: false
matrix:
otp: [25, 26, 27]
os: [ubuntu-latest]
steps:
- uses: actions/checkout@v3
- uses: erlef/setup-beam@v1
with:
otp-version: ${{matrix.otp}}
rebar3-version: 3.20.0
- run: |
rebar3 eunit

0 comments on commit 1b8318c

Please sign in to comment.