mirror of
https://github.com/danog/psalm.git
synced 2024-11-26 20:34:47 +01:00
17 lines
335 B
YAML
17 lines
335 B
YAML
name: Run Shepherd
|
|
|
|
on: [push]
|
|
|
|
jobs:
|
|
build:
|
|
runs-on: ubuntu-latest
|
|
|
|
steps:
|
|
- uses: actions/checkout@v1
|
|
|
|
- name: Install dependencies
|
|
run: export COMPOSER_ROOT_VERSION=dev-master && composer install --prefer-dist --no-progress --no-suggest
|
|
|
|
- name: Run Psalm
|
|
run: ./psalm --threads=2 --shepherd
|