11 lines
218 B
YAML
11 lines
218 B
YAML
|
on: [push]
|
||
|
|
||
|
jobs:
|
||
|
phplint:
|
||
|
runs-on: docker
|
||
|
container:
|
||
|
image: cytopia/phplint:debian
|
||
|
entrypoint: sh
|
||
|
steps:
|
||
|
- uses: actions/checkout@v4
|
||
|
- ./docker-entrypoint.sh -i ./vendor/.* *.php
|