-
Notifications
You must be signed in to change notification settings - Fork 7
92 lines (64 loc) · 1.78 KB
/
test_extension.yml
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
80
81
82
83
84
85
86
87
88
89
90
91
92
name: Test Extension
on:
push:
branches: [ "main" ]
pull_request:
branches: [ "main" ]
permissions:
contents: read
jobs:
validate-composer:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Validate composer.json and composer.lock
run: composer validate
build:
runs-on: ubuntu-latest
needs: validate-composer
steps:
- uses: actions/checkout@v3
- uses: ./.github/actions/composer-cache
- name: Install dependencies
run: composer install --prefer-dist --no-progress
PHP-Compatibility:
runs-on: ubuntu-latest
needs: build
steps:
- uses: actions/checkout@v3
- uses: ./.github/actions/composer-cache
- name: PHP 7.4 compatibility
run: composer sniffer:php7.4
- name: PHP 8.0 compatibility
run: composer sniffer:php8.0
- name: PHP 8.1 compatibility
run: composer sniffer:php8.1
- name: PHP 8.2 compatibility
run: composer sniffer:php8.2
Static-tests:
runs-on: ubuntu-latest
needs: build
steps:
- uses: actions/checkout@v3
- uses: ./.github/actions/composer-cache
- name: phpstan
run: composer phpstan
PHP-Unit:
runs-on: ubuntu-latest
needs: build
steps:
- uses: actions/checkout@v3
- uses: ./.github/actions/composer-cache
- name: Setup PHP with Xdebug
uses: shivammathur/setup-php@v2
with:
php-version: '8.1'
coverage: xdebug
- name: PHP Unit
run: composer phpunit
- name: phpunit-coverage-badge
uses: timkrase/[email protected]
with:
push_badge: true
commit_message: "Update coverage badge"
repo_token: ${{ secrets.GITHUB_TOKEN }}