Skip to content

BE-1019: Replace Travis CI with GitHub Actions #1

BE-1019: Replace Travis CI with GitHub Actions

BE-1019: Replace Travis CI with GitHub Actions #1

Workflow file for this run

name: CI
on:
push:
branches: [master]
pull_request:
jobs:
test:
runs-on: ubuntu-22.04
strategy:
fail-fast: false
matrix:
otp: ['24.3', '25.3', '26.2']
steps:
- uses: actions/checkout@v4
- uses: erlef/setup-beam@v1
with:
otp-version: ${{ matrix.otp }}
rebar3-version: '3.22.1'
- run: rebar3 compile
- run: rebar3 eunit