forked from bestit/flagception-bundle
-
Notifications
You must be signed in to change notification settings - Fork 0
79 lines (67 loc) · 2.34 KB
/
php.yml
File metadata and controls
79 lines (67 loc) · 2.34 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
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
name: ci
on:
push:
branches: [ master ]
pull_request:
types: [opened, synchronize]
jobs:
build:
strategy:
matrix:
php: ['7.2','7.3','7.4','8.0', '8.1']
symfony: ['5.4', '6.3']
exclude:
- php: 7.2
symfony: 6.3
- php: 7.3
symfony: 6.3
- php: 7.4
symfony: 6.3
- php: 8.0
symfony: 6.3
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: shivammathur/setup-php@v2
with:
php-version: ${{ matrix.php }}
tools: composer
coverage: none
- 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
coverage:
strategy:
matrix:
php: ['8.2']
symfony: ['6.3']
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'