diff options
| author | Greg Roach <greg@subaqua.co.uk> | 2021-10-09 10:12:36 +0100 |
|---|---|---|
| committer | Greg Roach <greg@subaqua.co.uk> | 2021-10-09 10:14:52 +0100 |
| commit | 65420c9cb4c463bdde3e8ff20052ae199f6a853d (patch) | |
| tree | 8428d062cdcc0ac8aa1356ffe68f57e22ed36962 /.github | |
| parent | 439ed322e6bb4f21ae1ac0bf8e2108b55211e590 (diff) | |
| download | webtrees-65420c9cb4c463bdde3e8ff20052ae199f6a853d.tar.gz webtrees-65420c9cb4c463bdde3e8ff20052ae199f6a853d.tar.bz2 webtrees-65420c9cb4c463bdde3e8ff20052ae199f6a853d.zip | |
Update phpstan baseline
Diffstat (limited to '.github')
| -rw-r--r-- | .github/workflows/phpcs.yaml | 7 | ||||
| -rw-r--r-- | .github/workflows/phpstan.yaml | 10 | ||||
| -rw-r--r-- | .github/workflows/phpunit.yaml | 3 |
3 files changed, 11 insertions, 9 deletions
diff --git a/.github/workflows/phpcs.yaml b/.github/workflows/phpcs.yaml index 274b27a843..95e101619d 100644 --- a/.github/workflows/phpcs.yaml +++ b/.github/workflows/phpcs.yaml @@ -5,9 +5,14 @@ on: [push, pull_request] jobs: run: if: ${{ !startsWith(github.event.head_commit.message, 'Translation:') }} - runs-on: ubuntu-latest + runs-on: ${{ matrix.operating-system }} name: PHP/PHTML/CSS + strategy: + matrix: + operating-system: ['ubuntu-latest'] + php-version: ['8.0'] + steps: - uses: actions/checkout@v2 diff --git a/.github/workflows/phpstan.yaml b/.github/workflows/phpstan.yaml index 5342a38262..d7f00f957b 100644 --- a/.github/workflows/phpstan.yaml +++ b/.github/workflows/phpstan.yaml @@ -5,15 +5,13 @@ on: [push, pull_request] jobs: run: if: ${{ !startsWith(github.event.head_commit.message, 'Translation:') }} - runs-on: ${{ matrix.operating-system }} + name: phpstan strategy: - matrix: - operating-system: [ubuntu-latest] - php-version: ['7.4', '8.0', '8.1'] - - name: phpstan + matrix: + operating-system: [ubuntu-latest] + php-version: ['8.0'] steps: - uses: actions/checkout@v2 diff --git a/.github/workflows/phpunit.yaml b/.github/workflows/phpunit.yaml index e50990267c..5ef3a1a706 100644 --- a/.github/workflows/phpunit.yaml +++ b/.github/workflows/phpunit.yaml @@ -6,14 +6,13 @@ jobs: run: if: ${{ !startsWith(github.event.head_commit.message, 'Translation:') }} runs-on: ${{ matrix.operating-system }} + name: Testing PHP ${{ matrix.php-version }} on ${{ matrix.operating-system }} strategy: matrix: operating-system: [ubuntu-latest] php-version: ['7.4', '8.0', '8.1'] - name: Testing PHP ${{ matrix.php-version }} on ${{ matrix.operating-system }} - steps: - uses: shivammathur/setup-php@master with: |
