Skip to content

Commit

Permalink
Define matrix arguments as strings to avoid version number issues
Browse files Browse the repository at this point in the history
  • Loading branch information
crocodele committed Dec 18, 2023
1 parent 2b11960 commit 06c141f
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,8 +14,8 @@ jobs:
strategy:
fail-fast: false
matrix:
php: [ 8.0, 8.1, 8.2, 8.3, 8.4 ]
use-opcache: [ true, false ]
php: [ "8.0", "8.1", "8.2", "8.3", "8.4" ]
use-opcache: [ "true", "false" ]

steps:
- name: Checkout jsonpath
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/windows.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,9 +16,9 @@ jobs:
shell: cmd
strategy:
matrix:
version: [ 8.0, 8.1, 8.2, 8.3 ]
arch: [ x64 ]
ts: [ ts ]
version: [ "8.0", "8.1", "8.2", "8.3" ]
arch: [ "x64" ]
ts: [ "ts" ]
steps:
- name: Checkout jsonpath
uses: actions/checkout@v2
Expand Down

0 comments on commit 06c141f

Please sign in to comment.