Skip to content

Commit

Permalink
Merge pull request #6 from CHStudio/chore/scrutinizer
Browse files Browse the repository at this point in the history
chore(analysis): Enable Scrutinizer.
  • Loading branch information
shulard authored Oct 4, 2022
2 parents 1fb11fd + d5b0a58 commit cb939a3
Show file tree
Hide file tree
Showing 2 changed files with 36 additions and 0 deletions.
33 changes: 33 additions & 0 deletions .github/workflows/test-coverage.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,33 @@
on: ["push", "pull_request"]

name: Test coverage

jobs:
build:
name: Build
runs-on: ubuntu-latest
steps:
- name: "Checkout"
uses: "actions/checkout@v3"
with:
# Fetch 10 commits or Scrutinizer will throw ("Failed to retrieve commit parents. If you use a shallow git checkout, please checkout at least a depth of one."), see: RepositoryIntrospector at scrutinizer-ci/ocular GitHub repository
# 10 commits is an arbitrary value that is more than 1 commit
fetch-depth: 10

- name: "Install PHP"
uses: "shivammathur/setup-php@v2"
with:
coverage: "pcov"
php-version: "8.1"
ini-values: memory_limit=-1

- name: "Install dependencies"
uses: "ramsey/composer-install@v2"

- name: "Tests"
run: "vendor/bin/phpunit --coverage-clover=coverage.clover"

- name: Upload Scrutinizer coverage
uses: sudo-bot/action-scrutinizer@latest
with:
cli-args: "--format=php-clover coverage.clover"
3 changes: 3 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,8 @@
# Raven - How to test your API documentation and behavior.

[![Scrutinizer Code Quality](https://scrutinizer-ci.com/g/CHStudio/Raven/badges/quality-score.png?b=main)](https://scrutinizer-ci.com/g/CHStudio/Raven/?branch=main)
[![Code Coverage](https://scrutinizer-ci.com/g/CHStudio/Raven/badges/coverage.png?b=main)](https://scrutinizer-ci.com/g/CHStudio/Raven/?branch=main)

[![Latest Stable Version](https://poser.pugx.org/chstudio/raven/v/stable)](https://packagist.org/packages/chstudio/raven)
[![License](https://poser.pugx.org/chstudio/raven/license)](https://packagist.org/packages/chstudio/raven)

Expand Down

0 comments on commit cb939a3

Please sign in to comment.