Skip to content

chore: move xref from rebar.config to code attribute #66

chore: move xref from rebar.config to code attribute

chore: move xref from rebar.config to code attribute #66

Workflow file for this run

name: ci
on: push
jobs:
test:
runs-on: ubuntu-20.04
name: Erlang/OTP ${{matrix.otp}} / rebar3 ${{matrix.rebar3}}
strategy:
matrix:
otp: ['27', '26', '25', '24']
rebar3: ['3.22']
steps:
- uses: actions/checkout@v4
- uses: erlef/setup-beam@v1
with:
otp-version: ${{matrix.otp}}
rebar3-version: ${{matrix.rebar3}}
- name: compile
run: rebar3 compile
- name: xref
run: rebar3 xref
- name: dialyzer
run: rebar3 dialyzer