mirror of
https://github.com/slawkens/myaac.git
synced 2025-04-26 09:19:22 +02:00
17 lines
284 B
YAML
17 lines
284 B
YAML
name: PHP Linting
|
|
on:
|
|
pull_request:
|
|
branches: [master]
|
|
push:
|
|
branches: [master]
|
|
|
|
jobs:
|
|
phplint:
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- uses: actions/checkout@v3
|
|
- uses: overtrue/phplint@8.2
|
|
with:
|
|
path: .
|
|
options: --exclude=*.log
|