forked from bestit/flagception-bundle
-
Notifications
You must be signed in to change notification settings - Fork 6
44 lines (37 loc) · 1.32 KB
/
php_coverage_badge.yml
File metadata and controls
44 lines (37 loc) · 1.32 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
name: ci
on:
push:
branches: [ master ]
jobs:
coverage:
strategy:
matrix:
php: ['8.3']
symfony: ['7.4.0']
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: shivammathur/setup-php@v2
with:
php-version: ${{ matrix.php }}
tools: composer
coverage: xdebug
- name: Setup Dependencies
run: composer require "symfony/symfony:${{ matrix.symfony }}" --no-update
- name: Install dependencies
run: composer install --prefer-dist --no-progress
- name: run tests
run: ./vendor/bin/simple-phpunit
- name: Make code coverage badge
uses: timkrase/phpunit-coverage-badge@v1.2.1
with:
coverage_badge_path: output/coverage.svg
push_badge: false
- name: Git push to image-data branch
uses: peaceiris/actions-gh-pages@v3
with:
publish_dir: ./output
publish_branch: image-data
github_token: ${{ secrets.GITHUB_TOKEN }}
user_name: 'github-actions[bot]'
user_email: 'github-actions[bot]@users.noreply.github.com'