We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents accb61e + 1a331c8 commit 40d0dd7Copy full SHA for 40d0dd7
.github/workflows/php.yml
@@ -2,24 +2,24 @@ name: PHP Unitary
2
3
on:
4
push:
5
- branches: [ "main" ]
+ branches: ["main"]
6
pull_request:
7
8
workflow_dispatch:
9
10
permissions:
11
contents: read
12
13
jobs:
14
build:
15
-
16
runs-on: ubuntu-latest
+ env:
17
+ COMPOSER_ROOT_VERSION: 2.x-dev
18
19
steps:
20
- uses: actions/checkout@v4
21
22
- name: Cache Composer packages
- id: composer-cache
23
uses: actions/cache@v3
24
with:
25
path: vendor
@@ -31,4 +31,4 @@ jobs:
31
run: composer install --prefer-dist --no-progress
32
33
- name: Run test suite
34
- run: php vendor/bin/unitary
+ run: php vendor/bin/unitary
0 commit comments