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