mirror of
https://github.com/pi-hole/web.git
synced 2026-02-20 18:00:04 +00:00
Bumps [actions/checkout](https://github.com/actions/checkout) from 3.1.0 to 3.2.0. - [Release notes](https://github.com/actions/checkout/releases) - [Changelog](https://github.com/actions/checkout/blob/main/CHANGELOG.md) - [Commits](https://github.com/actions/checkout/compare/v3.1.0...v3.2.0) --- updated-dependencies: - dependency-name: actions/checkout dependency-type: direct:production update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] <support@github.com>
22 lines
340 B
YAML
22 lines
340 B
YAML
name: PHPStan
|
|
|
|
on:
|
|
push:
|
|
pull_request:
|
|
|
|
jobs:
|
|
build:
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- uses: actions/checkout@v3.2.0
|
|
|
|
- name: Install composer
|
|
uses: php-actions/composer@v6
|
|
|
|
- name: Run PHPStan
|
|
uses: php-actions/phpstan@v3
|
|
with:
|
|
configuration: phpstan.neon.dist
|
|
memory_limit: 256M
|
|
|