mirror of
https://github.com/pi-hole/web.git
synced 2025-12-27 13:59:14 +00:00
Bumps [actions/checkout](https://github.com/actions/checkout) from 3.2.0 to 3.3.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.2.0...v3.3.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>
14 lines
308 B
YAML
14 lines
308 B
YAML
# .github/workflows/php-cs-fixer.yml
|
|
on: [push, pull_request]
|
|
name: Lint
|
|
jobs:
|
|
php-cs-fixer:
|
|
name: PHP-CS-Fixer
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- uses: actions/checkout@v3.3.0
|
|
- name: PHP-CS-Fixer
|
|
uses: docker://oskarstark/php-cs-fixer-ga
|
|
with:
|
|
args: --diff --dry-run
|