Skip to content

Merge pull request #7 from novaframework/chore/drop-otp26-update-ci #35

Merge pull request #7 from novaframework/chore/drop-otp26-update-ci

Merge pull request #7 from novaframework/chore/drop-otp26-update-ci #35

Workflow file for this run

name: Build and test
on: [push]
jobs:
build:
runs-on: ubuntu-24.04
name: Erlang/OTP ${{matrix.otp}} / rebar3 ${{matrix.rebar3}}
strategy:
fail-fast: false
matrix:
otp: ['27.3', '28.3']
rebar3: ['3.26.0']
steps:
- uses: actions/checkout@v6
- uses: erlef/setup-beam@v1
with:
otp-version: ${{matrix.otp}}
rebar3-version: ${{matrix.rebar3}}
version-type: strict
- name: Compile
run: rebar3 compile
- name: Test
run: rebar3 ct