We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 31e53af commit d9846aeCopy full SHA for d9846ae
1 file changed
.github/workflows/php80.yml
@@ -5,17 +5,19 @@ on:
5
branches: [ master ]
6
pull_request:
7
8
-
+env:
9
+ OPERATING_SYS: "ubuntu-latest"
10
+ PHP_VERSION: 8.0
11
jobs:
12
test:
- runs-on: ${{ matrix.os }}
13
+ runs-on: "$OPERATING_SYS"
14
strategy:
15
fail-fast: true
16
matrix:
17
os: [ ubuntu-latest ]
18
php: [ 8.0 ]
19
- name: PHP${{matrix.php}} - ${{matrix.os}}
20
+ name: "PHP $PHP_VERSION - $OPERATING_SYS"
21
22
steps:
23
- name: Clone Repo
@@ -24,7 +26,7 @@ jobs:
24
26
- name: Setup PHP
25
27
uses: shivammathur/setup-php@v2
28
with:
- php-version: ${{ matrix.php }}
29
+ php-version: $PHP_VERSION
30
extensions: mysqli, mbstring, sqlsrv
31
tools: phpunit:8.5.13
32
0 commit comments