Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Attempt to fix CI #39

Merged
merged 3 commits into from
Apr 19, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 1 addition & 6 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -67,7 +67,7 @@ jobs:
strategy:
matrix:
operating-system: ['ubuntu-latest']
php-versions: ['7.4', '8.0', '8.1']
php-versions: ['7.4', '8.0', '8.1', '8.2', '8.3', '8.4']
phpunit-versions: ['latest']
steps:
- name: Checkout
Expand All @@ -90,8 +90,3 @@ jobs:
- name: PHPUnit tests
run: vendor/bin/phpunit

- name: Install Psalm
run: composer require --dev vimeo/psalm:^4|^5

- name: Static Analysis
run: vendor/bin/psalm
2 changes: 1 addition & 1 deletion composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@
"paragonie/sodium_compat": "^1|^2"
},
"require-dev": {
"composer/composer": "^1|>=2.0.14",
"composer/composer": "^1|^2",
"phpunit/phpunit": "^4|^5|^6|^7|^8|^9"
},
"scripts": {
Expand Down
1 change: 0 additions & 1 deletion psalm.xml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,6 @@
<directory name="src" />
</projectFiles>
<issueHandlers>
<RedundantPropertyInitializationCheck errorLevel="info" />
<RedundantCast errorLevel="suppress" />
<!-- PHP 5 support requires being explicit, even if it means being redundant -->
<UnnecessaryVarAnnotation errorLevel="suppress" />
Expand Down
Loading