mirror of
https://github.com/codeigniter4/CodeIgniter4.git
synced 2025-02-20 11:44:28 +08:00
Bumps [actions/cache](https://github.com/actions/cache) from 3 to 4. - [Release notes](https://github.com/actions/cache/releases) - [Changelog](https://github.com/actions/cache/blob/main/RELEASES.md) - [Commits](https://github.com/actions/cache/compare/v3...v4) --- updated-dependencies: - dependency-name: actions/cache dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] <support@github.com>
87 lines
2.1 KiB
YAML
87 lines
2.1 KiB
YAML
# When a PR is opened or a push is made, perform
|
|
# a static analysis check on the code using PHPStan.
|
|
name: PHPStan
|
|
|
|
on:
|
|
pull_request:
|
|
branches:
|
|
- 'develop'
|
|
- '4.*'
|
|
paths:
|
|
- 'app/**.php'
|
|
- 'system/**.php'
|
|
- 'utils/**.php'
|
|
- composer.json
|
|
- phpstan.neon.dist
|
|
- phpstan-baseline.php
|
|
- '.github/workflows/test-phpstan.yml'
|
|
|
|
push:
|
|
branches:
|
|
- 'develop'
|
|
- '4.*'
|
|
paths:
|
|
- 'app/**.php'
|
|
- 'system/**.php'
|
|
- 'utils/**.php'
|
|
- composer.json
|
|
- phpstan.neon.dist
|
|
- phpstan-baseline.php
|
|
- '.github/workflows/test-phpstan.yml'
|
|
|
|
concurrency:
|
|
group: ${{ github.workflow }}-${{ github.head_ref || github.run_id }}
|
|
cancel-in-progress: true
|
|
|
|
permissions:
|
|
contents: read
|
|
|
|
jobs:
|
|
build:
|
|
name: PHP ${{ matrix.php-versions }} Static Analysis
|
|
runs-on: ubuntu-22.04
|
|
strategy:
|
|
fail-fast: false
|
|
steps:
|
|
- name: Checkout
|
|
uses: actions/checkout@v4
|
|
|
|
- name: Setup PHP
|
|
uses: shivammathur/setup-php@v2
|
|
with:
|
|
php-version: '8.1'
|
|
extensions: intl
|
|
coverage: none
|
|
|
|
- name: Use latest Composer
|
|
run: composer self-update
|
|
|
|
- name: Validate composer.json
|
|
run: composer validate --strict
|
|
|
|
- name: Get composer cache directory
|
|
run: echo "COMPOSER_CACHE_FILES_DIR=$(composer config cache-files-dir)" >> $GITHUB_ENV
|
|
|
|
- name: Cache dependencies
|
|
uses: actions/cache@v4
|
|
with:
|
|
path: ${{ env.COMPOSER_CACHE_FILES_DIR }}
|
|
key: ${{ runner.os }}-composer-${{ hashFiles('**/composer.json') }}
|
|
restore-keys: ${{ runner.os }}-composer-
|
|
|
|
- name: Create PHPStan result cache directory
|
|
run: mkdir -p build/phpstan
|
|
|
|
- name: Cache PHPStan result cache directory
|
|
uses: actions/cache@v4
|
|
with:
|
|
path: build/phpstan
|
|
key: ${{ runner.os }}-phpstan-${{ github.sha }}
|
|
restore-keys: ${{ runner.os }}-phpstan-
|
|
|
|
- name: Install dependencies
|
|
run: composer update --ansi --no-interaction
|
|
|
|
- name: Run static analysis
|
|
run: vendor/bin/phpstan analyse
|