Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/mickaelandrieu/phpqa-ga
PHPQA Github action
https://github.com/mickaelandrieu/phpqa-ga
github-action phpqatools
Last synced: 13 days ago
JSON representation
PHPQA Github action
- Host: GitHub
- URL: https://github.com/mickaelandrieu/phpqa-ga
- Owner: mickaelandrieu
- Created: 2019-01-09T23:05:27.000Z (almost 6 years ago)
- Default Branch: master
- Last Pushed: 2019-02-18T02:18:24.000Z (over 5 years ago)
- Last Synced: 2024-08-01T16:35:01.433Z (3 months ago)
- Topics: github-action, phpqatools
- Language: Dockerfile
- Size: 2.93 KB
- Stars: 3
- Watchers: 2
- Forks: 3
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# GithubAction for PHPQA
## Usage
You can use it as a Github Action like this:
_.github/main.workflow_
```
workflow "Main" {
on = "push"
resolves = ["PHPQA"]
}action "PHPQA" {
uses = "docker://mickaelandrieu/phpqa-ga"
secrets = ["GITHUB_TOKEN"]
args = "--report --output=cli"
}
```**You can copy/paste the .github folder (under examples/) to your project and thats all!**
## Docker
A Docker-Image is built automatically and located here:
https://cloud.docker.com/u/mickaelandrieu/repository/docker/mickaelandrieu/phpqa-gaYou can run it in any given directory like this:
`docker run --rm -it -w=/app -v ${PWD}:/app mickaelandrieu/phpqa-ga:latest tools`