GH Actions: CS run - remove matrix
The CS run only needs to run against one PHP version, so there is no need to set up a matrix for this.
This commit is contained in:
parent
35ab349e01
commit
bc5fe4dc1f
|
|
@ -10,10 +10,6 @@ jobs:
|
|||
|
||||
coding-standard:
|
||||
runs-on: ubuntu-18.04
|
||||
strategy:
|
||||
matrix:
|
||||
php: ['8.0']
|
||||
dependency-version: [prefer-stable]
|
||||
name: Coding standards
|
||||
|
||||
steps:
|
||||
|
|
@ -23,7 +19,7 @@ jobs:
|
|||
- name: Set up PHP
|
||||
uses: shivammathur/setup-php@v2
|
||||
with:
|
||||
php-version: ${{ matrix.php }}
|
||||
php-version: '8.0'
|
||||
coverage: none
|
||||
tools: cs2pr
|
||||
|
||||
|
|
|
|||
Loading…
Reference in New Issue