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 982a763 commit f4e5181Copy full SHA for f4e5181
.github/workflows/ci.yml
@@ -10,9 +10,25 @@ jobs:
10
build:
11
runs-on: ubuntu-latest
12
13
+ strategy:
14
+ matrix:
15
+ operating-system: [ ubuntu-latest ]
16
+ php: [ '7.4' ]
17
+# php: [ '7.4', '8.0' ]
18
+
19
+ name: PHP ${{ matrix.php }}
20
21
steps:
22
- uses: actions/checkout@v2
23
24
+ - name: Setup PHP
25
+ uses: shivammathur/setup-php@v2
26
+ with:
27
+ php-version: ${{ matrix.php }}
28
+ tools: composer:v2
29
+ coverage: none
30
+ ini-values: expose_php=1
31
32
- name: Validate composer.json and composer.lock
33
run: composer validate
34
0 commit comments