https://github.com/k1low/phan-action
GitHub Action for Phan
https://github.com/k1low/phan-action
github-actions phan php static-analysis
Last synced: 2 months ago
JSON representation
GitHub Action for Phan
- Host: GitHub
- URL: https://github.com/k1low/phan-action
- Owner: k1LoW
- License: mit
- Created: 2022-03-21T14:07:46.000Z (over 4 years ago)
- Default Branch: main
- Last Pushed: 2022-03-25T14:29:08.000Z (over 4 years ago)
- Last Synced: 2025-03-28T01:53:49.327Z (over 1 year ago)
- Topics: github-actions, phan, php, static-analysis
- Language: Dockerfile
- Homepage:
- Size: 8.79 KB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# phan-action
GitHub Action for [Phan](https://github.com/phan/phan)
## Usage
``` yaml
# .github/workflows/ci.yml
name: Analysis PHP codes
on:
push:
branches:
- main
pull_request:
jobs:
analysis:
runs-on: ubuntu-latest
steps:
-
uses: actions/checkout@v2
-
name: Run Phan
uses: k1LoW/phan-action@v0
```