Skip to content

Aktualisiere PHP-CS-Fixer auf v3.62.0 #10

Aktualisiere PHP-CS-Fixer auf v3.62.0

Aktualisiere PHP-CS-Fixer auf v3.62.0 #10

Workflow file for this run

name: Tests
on:
push:
branches:
- master
pull_request:
jobs:
build:
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
php-version: [ '7.2', '7.4', '8.1', '8.2' ]
coverage: none

Check failure on line 16 in .github/workflows/tests.yml

View workflow run for this annotation

GitHub Actions / Tests

Invalid workflow file

The workflow is not valid. .github/workflows/tests.yml (Line: 16, Col: 27): Unexpected value 'none'
dependency-version: [ prefer-stable ]
name: PHP ${{ matrix.php-version }} - ${{ matrix.dependency-version }}
steps:
- uses: actions/checkout@v4
- name: Install PHP
uses: shivammathur/setup-php@v2
with:
php-version: ${{ matrix.php-version }}
coverage: none
extensions: dom
- name: Install dependencies
run: composer update --no-interaction --prefer-dist --${{ matrix.dependency-version}} --no-progress --no-suggest
- name: Run test suite
run: vendor/bin/phpunit