Skip to content

Commit a0cad67

Browse files
authored
Merge branch 'myclabs:master' into master
2 parents a1c7bcf + 347013f commit a0cad67

File tree

2 files changed

+3
-10
lines changed

2 files changed

+3
-10
lines changed

.github/workflows/ci.yaml

+2-9
Original file line numberDiff line numberDiff line change
@@ -27,15 +27,14 @@ jobs:
2727

2828
steps:
2929
- name: "Checkout"
30-
uses: "actions/checkout@v2"
30+
uses: "actions/checkout@v4"
3131
with:
3232
fetch-depth: 2
3333

3434
- name: "Install PHP"
3535
uses: "shivammathur/setup-php@v2"
3636
with:
3737
php-version: "${{ matrix.php-version }}"
38-
coverage: "pcov"
3938
ini-values: "zend.assertions=1"
4039

4140
- name: "Install dependencies with Composer"
@@ -44,10 +43,4 @@ jobs:
4443
dependency-versions: "${{ matrix.dependencies }}"
4544

4645
- name: "Run PHPUnit"
47-
run: "vendor/bin/phpunit --coverage-clover=coverage.xml"
48-
49-
- name: "Upload coverage file"
50-
uses: "actions/upload-artifact@v2"
51-
with:
52-
name: "phpunit-${{ matrix.deps }}-${{ matrix.php-version }}.coverage"
53-
path: "coverage.xml"
46+
run: "vendor/bin/phpunit"

.github/workflows/static-analysis.yaml

+1-1
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ jobs:
1313

1414
steps:
1515
- name: Checkout code
16-
uses: actions/checkout@v2
16+
uses: actions/checkout@v4
1717

1818
- name: Psalm
1919
uses: docker://vimeo/psalm-github-actions:4.9.3

0 commit comments

Comments
 (0)