File tree Expand file tree Collapse file tree 2 files changed +50
-2
lines changed Expand file tree Collapse file tree 2 files changed +50
-2
lines changed Original file line number Diff line number Diff line change 74
74
run : composer install -q --no-ansi --no-interaction --no-scripts --no-progress --prefer-dist
75
75
- name : PHP Unit
76
76
run : |
77
- echo '{}' | jq '.http.upload.skip |= ${{ secrets.SKIP_HTTP_UPLOAD }} ' > tests/config.json
77
+ echo '{}' | jq '.http.upload.skip |= true ' > tests/config.json
78
78
vendor/bin/phpunit tests
79
79
80
80
test-php8 :
@@ -120,7 +120,7 @@ jobs:
120
120
run : composer install -q --no-ansi --no-interaction --no-scripts --no-progress --prefer-dist
121
121
- name : PHP Unit
122
122
run : |
123
- echo '{}' | jq '.http.upload.skip |= ${{ secrets.SKIP_HTTP_UPLOAD }} ' > tests/config.json
123
+ echo '{}' | jq '.http.upload.skip |= true ' > tests/config.json
124
124
vendor/bin/phpunit tests
125
125
126
126
rebase-php8 :
Original file line number Diff line number Diff line change
1
+ # Copyright 2025 Rob Spoor
2
+ #
3
+ # Licensed under the Apache License, Version 2.0 (the "License");
4
+ # you may not use this file except in compliance with the License.
5
+ # You may obtain a copy of the License at
6
+ #
7
+ # http://www.apache.org/licenses/LICENSE-2.0
8
+ #
9
+ # Unless required by applicable law or agreed to in writing, software
10
+ # distributed under the License is distributed on an "AS IS" BASIS,
11
+ # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
12
+ # See the License for the specific language governing permissions and
13
+ # limitations under the License.
14
+
15
+ name : Build
16
+
17
+ on :
18
+ workflow_dispatch :
19
+ push :
20
+ # only run for branches, not tags
21
+ branches-ignore : php8
22
+ pull_request :
23
+
24
+ jobs :
25
+ test :
26
+ runs-on : ubuntu-latest
27
+ steps :
28
+ - uses : actions/checkout@v5
29
+ with :
30
+ persist-credentials : false
31
+ - uses : shivammathur/setup-php@v2
32
+ with :
33
+ php-version : ' 7.4'
34
+ coverage : xdebug
35
+ - name : Cache Composer packages
36
+ id : composer-cache
37
+ uses : actions/cache@v4
38
+ with :
39
+ path : vendor
40
+ key : ${{ runner.os }}-php-${{ hashFiles('**/composer.lock') }}
41
+ restore-keys : |
42
+ ${{ runner.os }}-php-
43
+ - name : Install dependencies
44
+ run : composer install -q --no-ansi --no-interaction --no-scripts --no-progress --prefer-dist
45
+ - name : PHP Unit
46
+ run : |
47
+ echo '{}' | jq '.http.upload.skip |= false' > tests/config.json
48
+ vendor/bin/phpunit tests
You can’t perform that action at this time.
0 commit comments