Move to a makefile based nif compilation #135
Workflow file for this run
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| 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 |