Skip to content

Commit 82bd431

Browse files
run phpcs on 8.3 and run tests on 8.2 and 8.3
1 parent 7f18ad4 commit 82bd431

File tree

1 file changed

+2
-11
lines changed

1 file changed

+2
-11
lines changed

.github/workflows/build.yml

Lines changed: 2 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -5,13 +5,7 @@ on: [ push, pull_request ]
55
jobs:
66
coding-standards:
77
name: "Coding Standards"
8-
runs-on: "ubuntu-20.04"
9-
10-
strategy:
11-
matrix:
12-
php-version:
13-
- "8.2"
14-
8+
runs-on: "ubuntu-latest"
159
steps:
1610
- name: "Checkout"
1711
uses: "actions/checkout@v2"
@@ -20,7 +14,7 @@ jobs:
2014
uses: "shivammathur/setup-php@v2"
2115
with:
2216
coverage: "none"
23-
php-version: "${{ matrix.php-version }}"
17+
php-version: "8.3"
2418
tools: "cs2pr"
2519

2620
- name: "Install dependencies with Composer"
@@ -32,14 +26,11 @@ jobs:
3226
tests:
3327
name: "Tests"
3428
runs-on: "ubuntu-20.04"
35-
3629
strategy:
3730
matrix:
3831
php-version:
39-
- "8.1"
4032
- "8.2"
4133
- "8.3"
42-
4334
steps:
4435
- name: "Checkout"
4536
uses: "actions/checkout@v2"

0 commit comments

Comments
 (0)