Skip to content

Commit 8f0591d

Browse files
Merge branch '4.1'
2 parents caabbf0 + a01150e commit 8f0591d

File tree

3 files changed

+6
-14
lines changed

3 files changed

+6
-14
lines changed

.gitattributes

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,8 @@
66
/.github export-ignore
77
/.gitignore export-ignore
88
/.github export-ignore
9-
/phpstan.neon.dist export-ignore
9+
/Makefile export-ignore
10+
/phpstan.src.neon.dist export-ignore
1011
/phpstan.tests.neon.dist export-ignore
1112
/phpunit.xml.dist export-ignore
1213
/psalm.xml export-ignore

.github/workflows/tests.yml

Lines changed: 3 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ on:
55
pull_request:
66

77
jobs:
8-
tests_latest:
8+
latest:
99
name: PHP ${{ matrix.php }} Latest
1010
runs-on: ubuntu-20.04
1111

@@ -27,26 +27,17 @@ jobs:
2727
- name: Setup Problem Matchers
2828
run: echo "::add-matcher::${{ runner.tool_cache }}/phpunit.json"
2929

30-
- name: Install PHP 5/7 Dependencies
30+
- name: Install Latest Dependencies
3131
uses: nick-invision/retry@v1
3232
with:
3333
timeout_minutes: 5
3434
max_attempts: 5
3535
command: composer update --no-interaction --no-progress
36-
if: "matrix.php < 8"
37-
38-
- name: Install PHP 8 Dependencies
39-
uses: nick-invision/retry@v1
40-
with:
41-
timeout_minutes: 5
42-
max_attempts: 5
43-
command: composer update --no-interaction --no-progress --ignore-platform-reqs
44-
if: "matrix.php >= 8"
4536

4637
- name: Execute PHPUnit
4738
run: vendor/bin/phpunit
4839

49-
tests_lowest:
40+
lowest:
5041
name: PHP ${{ matrix.php }} Lowest
5142
runs-on: ubuntu-20.04
5243

composer.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@
2727
"require-dev": {
2828
"ext-filter": "*",
2929
"bamarni/composer-bin-plugin": "^1.4.1",
30-
"phpunit/phpunit": "^7.5.20 || ^8.5.2 || ^9.0"
30+
"phpunit/phpunit": "^7.5.20 || ^8.5.8 || ^9.4"
3131
},
3232
"autoload": {
3333
"psr-4": {

0 commit comments

Comments
 (0)