Thanks to visit codestin.com Credit goes to github.com
We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 0fd5de3 + 6f304d2 commit de238ebCopy full SHA for de238eb
1 file changed
.github/workflows/php.yml
@@ -5,6 +5,7 @@ on:
5
branches: [ "master" ]
6
pull_request:
7
8
+ workflow_dispatch:
9
10
permissions:
11
contents: read
@@ -16,6 +17,9 @@ jobs:
16
17
18
steps:
19
- uses: actions/checkout@v4
20
+ with:
21
+ submodules: recursive
22
+ fetch-depth: 0
23
24
- name: Validate composer.json and composer.lock
25
run: composer validate --strict
@@ -32,6 +36,9 @@ jobs:
32
36
- name: Install dependencies
33
37
run: composer install --prefer-dist --no-progress
34
38
39
+ - name: Build YAML test suite data
40
+ run: make -C tests/yaml-test-suite data
41
+
35
42
- name: Run test suite
43
run: php ./vendor/bin/phpunit
44
0 commit comments