Skip to content

Commit

Permalink
Static analysis
Browse files Browse the repository at this point in the history
  • Loading branch information
rennokki committed Oct 25, 2021
1 parent 9154e90 commit 4dfadc1
Show file tree
Hide file tree
Showing 4 changed files with 809 additions and 4 deletions.
4 changes: 4 additions & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -62,6 +62,10 @@ jobs:
run: |
composer install --no-interaction --no-progress --prefer-dist --optimize-autoloader
- name: Run static analysis
run: |
vendor/bin/psalm
- name: Run tests
run: |
vendor/bin/phpunit --coverage-text --coverage-clover=coverage.xml
Expand Down
5 changes: 3 additions & 2 deletions composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -16,15 +16,16 @@
}
],
"require": {
"php": "^7.4|^8.0",
"php": "^8.0",
"guzzlehttp/guzzle": "^7.3.0",
"illuminate/http": "^8.63",
"laravel-zero/framework": "^8.8",
"renoki-co/laravel-php-k8s": "^3.1"
},
"require-dev": {
"mockery/mockery": "^1.4.3",
"phpunit/phpunit": "^9.5"
"phpunit/phpunit": "^9.5",
"vimeo/psalm": "^4.11"
},
"suggest": {
"ext-pcntl": "The command needs pcntl to listen to SIGINT/SIGTERM signals."
Expand Down
Loading

0 comments on commit 4dfadc1

Please sign in to comment.