Skip to content

Merge pull request #111 from michalmuskala/patch-1 #49

Merge pull request #111 from michalmuskala/patch-1

Merge pull request #111 from michalmuskala/patch-1 #49

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}}
container:
image: erlang:${{matrix.otp_vsn}}
strategy:
matrix:
otp_vsn: ['20.3', '21.3', '22.3', '23.3', '24.3', '25.3', '26.0.2', '27.0.1']
os: [ubuntu-latest]
steps:
- uses: actions/checkout@v2
- run: rebar3 edoc
- run: if [ $(rebar3 version | awk '{print $5}') -gt 23 ]; then rebar3 ex_doc; fi;
- run: rebar3 eunit
- run: rebar3 ct
- run: rebar3 dialyzer