Merge pull request #22 from 1stthomas/fix-phpunit-config-desc #176
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: PhpUnit Coverage Badge | |
on: push | |
jobs: | |
test: | |
name: Run tests | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout code | |
uses: actions/checkout@v2 | |
- name: Setup PHP | |
uses: shivammathur/[email protected] | |
with: | |
php-version: '7.4' | |
extensions: simplexml, dom, xml, xdebug, intl | |
- name: Get composer cache directory | |
id: composer-cache | |
run: echo "::set-output name=dir::$(composer config cache-files-dir)" | |
- name: Cache dependencies | |
uses: actions/cache@v2 | |
with: | |
path: ${{ steps.composer-cache.outputs.dir }} | |
key: ${{ runner.os }}-composer-${{ hashFiles('**/composer.lock') }} | |
restore-keys: ${{ runner.os }}-composer- | |
- name: Install dependencies | |
run: composer install --prefer-dist | |
- name: Recreate autoload file | |
run: composer dump-autoload | |
- name: Run Psalm | |
run: composer psalm | |
- name: Run PHP_CS | |
run: composer phpcs | |
- name: Run Unit Tests | |
run: XDEBUG_MODE_COVERAGE=coverage vendor/bin/phpunit | |
- name: Generate test coverage badge | |
uses: ./ | |
with: | |
coverage_badge_path: 'badge.svg' | |
push_badge: true | |
repo_token: ${{ secrets.GITHUB_TOKEN }} |