Skip to content

Feature/improve static code analysis #25

Feature/improve static code analysis

Feature/improve static code analysis #25

Workflow file for this run

---
name: build
on:
push:
branches:
- master
pull_request:
branches:
- master
jobs:
ci:
name: Run checks and tests over ${{matrix.otp_vsn}} and ${{matrix.os}}
runs-on: ${{matrix.os}}
strategy:
matrix:
otp_vsn: [24, 25, 26]
os: [ubuntu-latest]
steps:
- uses: actions/checkout@v2
- uses: erlef/[email protected]
with:
otp-version: ${{matrix.otp_vsn}}
rebar3-version: '3.22.1'
- run: rebar3 as test xref
- run: rebar3 as test dialyzer
- run: rebar3 hank
- run: rebar3 lint
# - run: rebar3 as test ct