Skip to content

touch up RELEASE-NOTES #37

touch up RELEASE-NOTES

touch up RELEASE-NOTES #37

Workflow file for this run

name: Erlang CI
on:
push:
branches: [ develop ]
pull_request:
branches: [ develop ]
jobs:
build:
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
otp:
- "22"
- "24"
- "25"
- "26"
container:
image: erlang:${{ matrix.otp }}
steps:
- uses: actions/checkout@v3
- name: Compile
run: make compile
- name: Run checks
run: make check