Skip to content

Merge pull request #159 from esl/controller/deal_with_users_dying_too… #130

Merge pull request #159 from esl/controller/deal_with_users_dying_too…

Merge pull request #159 from esl/controller/deal_with_users_dying_too… #130

Workflow file for this run

name: CI
on:
push:
branches: [ master ]
pull_request:
branches: [ master ]
jobs:
test:
name: ${{ matrix.test-type }} test on OTP ${{matrix.otp}}
strategy:
matrix:
otp_vsn: ['25.3', '24.3']
rebar_vsn: ['3.20.0']
test-type: ['regular', 'integration']
runs-on: 'ubuntu-22.04'
steps:
- uses: actions/checkout@v3
- uses: erlef/setup-beam@v1
with:
otp-version: ${{ matrix.otp_vsn }}
rebar3-version: ${{ matrix.rebar_vsn }}
- if: matrix.test-type == 'regular'
run: make test
- if: matrix.test-type == 'integration'
run: make integration_test
env:
OTP_RELEASE: ${{ matrix.otp_vsn }}