Skip to content

Commit

Permalink
test
Browse files Browse the repository at this point in the history
  • Loading branch information
tabuna committed Nov 2, 2024
1 parent 2378180 commit 2a88724
Show file tree
Hide file tree
Showing 2 changed files with 11 additions and 5 deletions.
9 changes: 8 additions & 1 deletion .github/workflows/quality.yml
Original file line number Diff line number Diff line change
Expand Up @@ -43,8 +43,15 @@ jobs:
- name: Install Dependencies 🔧
run: composer install -q --no-ansi --no-interaction --no-scripts --no-progress --prefer-dist

# Installing psalm separately due to conflict with phpunit
- name: Install psalm
run: |
wget https://github.com/vimeo/psalm/releases/latest/download/psalm.phar
chmod +x psalm.phar
mv psalm.phar /usr/local/bin/psalm
- name: Run psalm
run: vendor/bin/psalm --output-format=github
run: psalm --output-format=github

phploc:
name: phploc
Expand Down
7 changes: 3 additions & 4 deletions composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -47,10 +47,9 @@
"require-dev": {
"fakerphp/faker": "^1.9.1",
"laravel/pint": "^1.14",
"orchestra/testbench-core": "^8.0 || ^9.0",
"orchestra/testbench-dusk": "^8.0 || ^9.0",
"phpunit/phpunit": "^10.0 || ^11.0",
"vimeo/psalm": "^5.0"
"orchestra/testbench-core": "^9.0",
"orchestra/testbench-dusk": "^9.0",
"phpunit/phpunit": "^11.0"
},
"conflict": {
"laravel/framework": "<10.48.8",
Expand Down

0 comments on commit 2a88724

Please sign in to comment.