/
githubmirror
/
framework
Обзор
Документация
Войти
/
githubmirror
/
framework
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
13.x
.github/workflows/static-analysis.yml
35 строк
743 B
dependabot[bot]
Bump actions/checkout from 7.0.0 to 7.0.1 in the github-actions group (#60900)
27 июл 2026, 11:56
Не верифицирован
27 июл 2026, 11:56
1ada28e
Код
Авторство
О чём код?
name: static analysis on: push: branches: - master - '*.x' pull_request: permissions: contents: read jobs: types: runs-on: ubuntu-24.04 timeout-minutes: 5 strategy: fail-fast: true matrix: directory: [src, types] name: ${{ matrix.directory == 'src' && 'Source Code' || 'Types' }} steps: - name: Checkout code uses: actions/checkout@3d3c42e5aac5ba805825da76410c181273ba90b1 # v7.0.1 with: persist-credentials: false - name: Setup PHP project uses: ./.github/actions/setup-php-project - name: Execute type checking run: vendor/bin/phpstan --configuration="phpstan.${{ matrix.directory }}.neon.dist" --no-progress