Skip to content

Remove nif

Remove nif #43

Workflow file for this run

name: CI
# Controls when the action will run.
on:
# Triggers the workflow on push or pull request events but only for the master branch
push:
branches: [ master ]
pull_request:
branches: [ master ]
# A workflow run is made up of one or more jobs that can run sequentially or in parallel
jobs:
test:
name: OTP ${{matrix.otp_vsn}}
strategy:
matrix:
otp_vsn: ['27', '26', '25']
rebar_vsn: ['3.23.0']
runs-on: 'ubuntu-22.04'
steps:
- uses: actions/checkout@v4
- uses: erlef/setup-beam@v1
with:
otp-version: ${{ matrix.otp_vsn }}
rebar3-version: ${{ matrix.rebar_vsn }}
- run: rebar3 as test compile
- run: rebar3 ct
- run: rebar3 ex_doc
if: ${{ matrix.otp == '27' }}
- run: rebar3 dialyzer
if: ${{ matrix.otp == '27' }}
- run: rebar3 as test codecov analyze
if: ${{ matrix.otp == '27' }}
- run: rebar3 as test codecov analyze
- uses: codecov/codecov-action@v4
with:
name: Upload coverage reports to Codecov
token: ${{ secrets.CODECOV_TOKEN }}