Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/marlo-longley/phpcs-action
A Github Action for running the PHPCS (PHP Code Sniffer) on pull requests
https://github.com/marlo-longley/phpcs-action
Last synced: 1 day ago
JSON representation
A Github Action for running the PHPCS (PHP Code Sniffer) on pull requests
- Host: GitHub
- URL: https://github.com/marlo-longley/phpcs-action
- Owner: marlo-longley
- Created: 2019-10-21T20:29:59.000Z (about 5 years ago)
- Default Branch: master
- Last Pushed: 2019-10-22T16:42:31.000Z (about 5 years ago)
- Last Synced: 2024-11-06T17:58:16.548Z (about 2 months ago)
- Language: Dockerfile
- Size: 12.7 KB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
GitHub Action for Drupal Coder + PHPCS
GitHub ActionUsage
You can use it as a Github Action like this:.github/workflows/phpcs.yml
```
name: Drupal Coder + PHPCS
on: [pull_request]
jobs:
build:
# Job name is PHPCS
name: PHPCS
# This job runs on Linux
runs-on: ubuntu-latest
steps:
- name: Drupal Coder + PHPCS
uses: marlo-longley/phpcs-action@master
id: phpcs
```