Skip to content

Commit

Permalink
Fix workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
felix-schindler committed Oct 27, 2022
1 parent cf5ecba commit 5cc45f8
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/php.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,13 +18,13 @@ jobs:
id: composer-cache
uses: actions/cache@v2
with:
path: Backend/Libraries/vendor
path: vendor
key: ${{ runner.os }}-php-${{ hashFiles('**/composer.lock') }}
restore-keys: |
${{ runner.os }}-php-
- name: Install dependencies
run: cd Backend/Libraries && composer install --no-progress
run: composer install --no-progress

- name: Run test suite
run: php Backend/Libraries/vendor/bin/phpstan analyse -c .phpstan.neon --memory-limit 500M
run: php vendor/bin/phpstan analyse -c .phpstan.neon --memory-limit 500M

0 comments on commit 5cc45f8

Please sign in to comment.