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 8e016d1 commit f987373Copy full SHA for f987373
.github/workflows/unit-tests.yml
@@ -74,7 +74,8 @@ jobs:
74
uses: actions/cache@v4
75
with:
76
path: build
77
- key: ${{ runner.os }}-crc64fast-nvme-${{ hashFiles('**/Cargo.lock') }}
+ # Use the hash of the Makefile, since the git build version will be in the Makefile
78
+ key: ${{ runner.os }}-crc64fast-nvme-${{ hashFiles('**/Makefile') }}
79
restore-keys: |
80
${{ runner.os }}-crc64fast-nvme-
81
phpunit.xml
@@ -1,4 +1,4 @@
1
-<phpunit colors="true">
+<phpunit bootstrap="vendor/autoload.php" colors="true">
2
<php>
3
<ini name="display_errors" value="On" />
4
<ini name="display_startup_errors" value="On" />
0 commit comments