Skip to content

add otp 22 and 26 to github CI #36

add otp 22 and 26 to github CI

add otp 22 and 26 to github CI #36

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