mirror of
https://github.com/danog/psalm-plugin-laravel.git
synced 2024-12-02 17:48:27 +01:00
23 lines
448 B
YAML
23 lines
448 B
YAML
name: Psalm
|
|
|
|
on: [push, pull_request]
|
|
|
|
jobs:
|
|
psalm:
|
|
name: Psalm
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- uses: actions/checkout@v2
|
|
|
|
- name: Setup PHP
|
|
uses: shivammathur/setup-php@v2
|
|
with:
|
|
php-version: '8.0'
|
|
coverage: none
|
|
|
|
- name: Install composer dependencies
|
|
run: composer install -n --prefer-dist
|
|
|
|
- name: Run Psalm
|
|
run: ./vendor/bin/psalm --threads=2 --shepherd
|