Update dependencies #35
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Statische Code-Analyse | |
permissions: | |
contents: read | |
packages: read | |
on: | |
push: | |
branches: | |
- master | |
pull_request: | |
env: | |
PHP_VERSION: 8.3 | |
PSALM_VERSION: 5.25.0 | |
jobs: | |
Psalm: | |
name: Psalm | |
runs-on: ubuntu-latest | |
steps: | |
- uses: shivammathur/setup-php@v2 | |
with: | |
php-version: ${{ env.PHP_VERSION }} | |
coverage: none | |
tools: composer:v2 | |
- uses: actions/checkout@v4 | |
- uses: actions/cache@v4 | |
with: | |
path: vendor | |
key: composer-${{ runner.os }}-${{ env.PHP_VERSION }}-${{ hashFiles('composer.json') }} | |
restore-keys: | | |
composer-${{ runner.os }}-${{ env.PHP_VERSION }}- | |
composer-${{ runner.os }}- | |
- run: | | |
composer install --no-interaction --no-progress --ansi --no-scripts | |
composer show | |
- name: Restore Psalm cache | |
uses: actions/cache@v4 | |
with: | |
path: /home/runner/.cache/psalm | |
key: psalm-${{ env.PSALM_VERSION }}-${{ env.PHP_VERSION }} | |
- name: Run Psalm | |
run: | | |
docker pull --quiet ghcr.io/webfactory/psalm:$PSALM_VERSION | |
docker run --tty -v $(pwd):/app -v $HOME/cache:/cache ghcr.io/webfactory/psalm:$PSALM_VERSION --show-info=false --stats --output-format=github |