From de820e9e519448c89f037ed4643162f641915ce7 Mon Sep 17 00:00:00 2001 From: Tristan Date: Wed, 1 Dec 2021 22:59:45 +0100 Subject: [PATCH] Fix Psalm action --- .github/workflows/ci.yaml | 15 ++++++++++++--- 1 file changed, 12 insertions(+), 3 deletions(-) diff --git a/.github/workflows/ci.yaml b/.github/workflows/ci.yaml index 8a1b770..87350c5 100644 --- a/.github/workflows/ci.yaml +++ b/.github/workflows/ci.yaml @@ -41,11 +41,20 @@ jobs: run: composer test psalm: - name: Psalm + name: Psalm (PHP ${{ matrix.php-versions }}) runs-on: ubuntu-latest + + strategy: + fail-fast: false + matrix: + php-versions: ['8.0'] + steps: - name: Checkout code uses: actions/checkout@v2 - - name: Psalm - uses: docker://vimeo/psalm-github-actions + - name: Composer install + uses: php-actions/composer@v5 + + - name: Run Psalm + run: ./vendor/bin/psalm --output-format=github