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 d328b0d commit 4d1f094Copy full SHA for 4d1f094
.github/workflows/isolated-tests.yml
@@ -33,7 +33,7 @@ jobs:
33
outputs:
34
matrix: ${{ steps.get_json.outputs.json }}
35
36
- phpunit:
+ tests:
37
runs-on: ${{ matrix.os }}
38
needs: get_packages
39
strategy:
@@ -82,3 +82,7 @@ jobs:
82
- name: Execute PHPUnit tests
83
run: |
84
[ ! -f "packages/${{ matrix.package.basename }}/phpunit.xml" ] || phpunit -c "packages/${{ matrix.package.basename }}/phpunit.xml"
85
+
86
+ - name: Execute Tempest tests
87
+ run: |
88
+ [ -f "packages/${{ matrix.package.basename }}/phpunit.xml" ] || cd "packages/${{ matrix.package.basename }}"; php packages/${{ matrix.package.basename }}/vendor/bin/tempest test
0 commit comments