An open API service indexing awesome lists of open source software.

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

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
```