Skip to content

OTP 29 Support

OTP 29 Support #24

Workflow file for this run

on:
push:
branches:
- master
pull_request:
jobs:
test:
name: test ${{matrix.otp}} on ${{matrix.os}}
runs-on: ${{matrix.os}}
container:
image: erlang:${{matrix.otp}}
strategy:
fail-fast: false
matrix:
os:
- ubuntu-latest
otp:
- "29"
- "28"
- "27"
- "26"
- "25"
steps:
- uses: actions/checkout@v6
- run: make
- run: make unit_tests