Workflow config file is invalid. Please check your config file: yaml: unmarshal errors: line 23: cannot unmarshal !!seq into model.Step
Jesper Louis Andersen f99c8643f0 Type correction.
2021-06-15 14:34:31 +02:00

27 lines
527 B
YAML

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:
- 24.0
os:
- ubuntu-latest
steps:
- uses: actions/checkout@v2
- - name: Install libsodium
- run: apt-get install -y libsodium-dev
- run: make compile
- run: make tests