Skip to content

Build only on the last 3 versions of OTP #21

Build only on the last 3 versions of OTP

Build only on the last 3 versions of OTP #21

Workflow file for this run

name: Erlang CI
on: [push]
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
erlang: [24, 25, 26]
container:
image: erlang:${{ matrix.erlang }}
steps:
- uses: actions/checkout@v1
- name: Compile
run: make compile
- name: Run xref
run: make xref
- name: Run eunit
run: make eunit
- name: Run dialyzer
run: make dialyzer