Skip to content

Merge pull request #191 from shopwareLabs/fix-github-plugin-service #59

Merge pull request #191 from shopwareLabs/fix-github-plugin-service

Merge pull request #191 from shopwareLabs/fix-github-plugin-service #59

Workflow file for this run

name: Test
on: [ push ]
jobs:
test:
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
php: [ 7.4, 8.0, 8.1, 8.2 ]
steps:
- uses: actions/checkout@v2
- name: Setup PHP
uses: shivammathur/setup-php@v2
with:
php-version: ${{ matrix.php }}
- name: Install dependencies
run: composer install --no-interaction --prefer-source
- name: Check code style
run: composer cs-check
if: ${{ matrix.php == '8.1'}}
- name: Execute tests
run: composer test