Skip to content

Merge pull request #36 from Leapsight/aramallo.upgrade_to_1.3.1 #139

Merge pull request #36 from Leapsight/aramallo.upgrade_to_1.3.1

Merge pull request #36 from Leapsight/aramallo.upgrade_to_1.3.1 #139

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