Skip to content

Update deps and test in OTP26 #88

Update deps and test in OTP26

Update deps and test in OTP26 #88

Workflow file for this run

name: CI
# Controls when the action will run.
on:
# Triggers the workflow on push or pull request events but only for the master branch
push:
branches: [ master ]
pull_request:
branches: [ master ]
# A workflow run is made up of one or more jobs that can run sequentially or in parallel
jobs:
test:
name: OTP ${{matrix.otp}}
strategy:
matrix:
otp: ['26.2', '25.3', '24.3']
runs-on: 'ubuntu-23.04'
env:
OTPVER: ${{ matrix.otp }}
steps:
- uses: actions/checkout@v3
- uses: erlef/setup-beam@v1
with:
otp-version: ${{ matrix.otp }}
- run: make rebar3
- run: make mongooseim-start
- run: make test
- run: make ct
- run: make dialyzer
if: ${{ matrix.otp == '26.2' }}