Skip to content

MGMT-132: Supporting migrations #366

MGMT-132: Supporting migrations

MGMT-132: Supporting migrations #366

Workflow file for this run

name: Tests & style checks
on:
# Trigger on any PR being opened, or on a merge to master (to update the badge)
pull_request:
push:
branches:
- master
jobs:
lint:
name: Lint
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: "ramsey/composer-install@v2"
- name: Check style
run: composer lint
test:
name: Test
runs-on: ubuntu-latest
strategy:
matrix:
php:
- "7.4"
- "latest"
steps:
- uses: "actions/checkout@v3"
- uses: "shivammathur/setup-php@v2"
with:
php-version: "${{ matrix.php }}"
- uses: "ramsey/composer-install@v2"
with:
dependency-versions: "${{ matrix.dependencies }}"
composer-options: "${{ matrix.composer-options }}"
- name: Run tests
run: composer test