Skip to content

Commit

Permalink
run phpcs on 8.3 and run tests on 8.2 and 8.3
Browse files Browse the repository at this point in the history
  • Loading branch information
dannyvankooten committed Nov 30, 2023
1 parent 7f18ad4 commit 82bd431
Showing 1 changed file with 2 additions and 11 deletions.
13 changes: 2 additions & 11 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,13 +5,7 @@ on: [ push, pull_request ]
jobs:
coding-standards:
name: "Coding Standards"
runs-on: "ubuntu-20.04"

strategy:
matrix:
php-version:
- "8.2"

runs-on: "ubuntu-latest"
steps:
- name: "Checkout"
uses: "actions/checkout@v2"
Expand All @@ -20,7 +14,7 @@ jobs:
uses: "shivammathur/setup-php@v2"
with:
coverage: "none"
php-version: "${{ matrix.php-version }}"
php-version: "8.3"
tools: "cs2pr"

- name: "Install dependencies with Composer"
Expand All @@ -32,14 +26,11 @@ jobs:
tests:
name: "Tests"
runs-on: "ubuntu-20.04"

strategy:
matrix:
php-version:
- "8.1"
- "8.2"
- "8.3"

steps:
- name: "Checkout"
uses: "actions/checkout@v2"
Expand Down

0 comments on commit 82bd431

Please sign in to comment.