Skip to content

Add catalog-info.yaml #5

Add catalog-info.yaml

Add catalog-info.yaml #5

Workflow file for this run

name: test
on:
push:
branches:
- "develop"
- "main"
pull_request: ~
jobs:
test:
runs-on: "ubuntu-latest"
strategy:
matrix:
php-version:
- "7.4"
- "8.0"
- "8.1"
- "8.2"
composer-dependency-versions:
- "lowest"
- "highest"
steps:
- uses: "actions/checkout@v2"
- uses: "shivammathur/setup-php@v2"
with:
php-version: "${{ matrix.php-version }}"
- uses: "ramsey/composer-install@v2"
with:
dependency-versions: "${{ matrix.composer-dependency-versions }}"
- run: "vendor/bin/phpcs"
- run: "vendor/bin/phpstan"
- run: "vendor/bin/phpunit"