Skip to content

Commit c568298

Browse files
Merge pull request #37 from DaveLiddament/tests/dependency-tests
ADD dependency-checks tests
2 parents e803de3 + ae9d988 commit c568298

File tree

3 files changed

+35
-0
lines changed

3 files changed

+35
-0
lines changed

.github/workflows/full-checks.yml

+5
Original file line numberDiff line numberDiff line change
@@ -61,3 +61,8 @@ jobs:
6161

6262
- name: "Full CI"
6363
run: "composer ci"
64+
65+
- name: "Check dependencies"
66+
run: |
67+
cd dependency-tests
68+
./check-phpstan-dependencies.sh

dependency-tests/.gitignore

+3
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
*
2+
!.gitignore
3+
!check-phpstan-dependencies.sh
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,27 @@
1+
#!/bin/bash
2+
3+
set -e
4+
5+
# Remove any existing composer files from previous run of the script
6+
rm -f composer.* || true
7+
8+
# Create composer.json
9+
cat <<- "EOF" > composer.json
10+
{
11+
"name": "demo/test_dependencies",
12+
"repositories" : [
13+
{
14+
"type" : "path",
15+
"url" : "../"
16+
}
17+
]
18+
}
19+
EOF
20+
21+
# Check PHPStan v1 is OK
22+
composer require --dev phpstan/phpstan:^1.0
23+
composer require --dev dave-liddament/phpstan-php-language-extensions @dev
24+
composer update --prefer-lowest --no-interaction
25+
26+
# Check PHPStan v2 is OK
27+
composer require --dev phpstan/phpstan:^2.0

0 commit comments

Comments
 (0)