endtoend-test-psl/.github/workflows/static-analysis.yml

32 lines
718 B
YAML
Raw Normal View History

name: "static analysis"
on:
pull_request: ~
push: ~
schedule:
- cron: '0 */3 * * *'
jobs:
static-analysis:
2020-10-04 19:12:37 +02:00
name: "static analysis"
runs-on: "ubuntu-latest"
steps:
- name: "checkout"
uses: "actions/checkout@v2"
- name: "installing PHP"
uses: "shivammathur/setup-php@v2"
with:
php-version: "7.4"
ini-values: memory_limit=-1
2020-10-01 03:18:53 +02:00
tools: composer:v2, cs2pr
extensions: bcmath, mbstring, intl, sodium, json
- name: "installing dependencies"
2021-03-27 21:32:45 +01:00
run: |
make install-root-dependencies
make install-type-check-dependencies
2021-03-27 21:32:45 +01:00
- name: "running static analysis"
run: make type-coverage