Skip to content

remove obsolete record in header! #80

remove obsolete record in header!

remove obsolete record in header! #80

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: ['25.0', '24.3', '23.3', '22.3', '21.3']
runs-on: 'ubuntu-20.04'
env:
OTPVER: ${{ matrix.otp }}
steps:
- uses: actions/checkout@v2
- 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 == '25.0' }}