Skip to content

Move to a makefile based nif compilation #136

Move to a makefile based nif compilation

Move to a makefile based nif compilation #136

Workflow file for this run

name: Test
on:
push:
branches: [ master ]
pull_request:
branches: [ master ]
jobs:
linux:
name: Test on OTP ${{ matrix.otp_version }}
runs-on: ${{ matrix.os }}
strategy:
matrix:
otp_version: [25, 26, 27]
os: [ubuntu-latest]
container:
image: erlang:${{ matrix.otp_version }}
steps:
- name: Checkout
uses: actions/checkout@v3
- name: Compile
run: make NO_OPT=1
- name: Test
run: make test NO_OPT=1