Skip to content

Make github action more verbose #41

Make github action more verbose

Make github action more verbose #41

Workflow file for this run

name: Build
on:
push:
branches:
- master
pull_request:
types:
- opened
- synchronize
- reopened
jobs:
build:
strategy:
fail-fast: false
matrix:
erlang:
- 24.2
- 25
runs-on: ubuntu-latest
container:
image: erlang:${{ matrix.erlang }}
steps:
- uses: actions/checkout@v3
- name: Run tests
run: make test
env:
DEBUG: 1