Skip to content

remove obsolete record in header! #76

remove obsolete record in header!

remove obsolete record in header! #76

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', '25', '24']
rebar: ['3.22']
runs-on: 'ubuntu-22.04'
env:
OTPVER: ${{ matrix.otp }}
steps:
- uses: actions/checkout@v3
- uses: erlef/setup-beam@v1
id: setup-beam
with:
otp-version: ${{ matrix.otp }}
rebar3-version: ${{matrix.rebar}}
- run: make rebar3
- run: make mongooseim-start
- run: make test
- run: make ct
- run: make dialyzer