-
Notifications
You must be signed in to change notification settings - Fork 296
57 lines (48 loc) · 1.78 KB
/
test.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
name: "Run unit tests"
on:
- push
- pull_request
env:
COMPOSER_MEMORY_LIMIT: -1
jobs:
test:
name: "Build"
runs-on: ubuntu-latest
strategy:
max-parallel: 12
fail-fast: false
matrix:
php: ['7.4', '8.0', '8.1', '8.2']
package-release: [dist]
steps:
- name: Checkout repository
uses: actions/checkout@v3
with:
fetch-depth: 2
- name: Setup PHP ${{ matrix.php }}
uses: shivammathur/setup-php@v2
with:
php-version: ${{ matrix.php }}
extensions: exif,json,mbstring,dom
- name: Get user-level Composer cache
id: composer-cache
run: echo "dir=$(composer config cache-files-dir)" >> $GITHUB_OUTPUT
- name: Setup Composer cache
uses: actions/cache@v3
with:
path: ${{ steps.composer-cache.outputs.dir }}
key: composer-${{ runner.os }}-${{ matrix.php }}-${{ matrix.package-release }}-${{ hashFiles('**/composer.json') }}
restore-keys: |
composer-${{ runner.os }}-${{ matrix.php }}-${{ matrix.package-release }}-${{ env.cache-name }}-
composer-${{ runner.os }}-${{ matrix.php }}-${{ matrix.package-release }}-
composer-${{ runner.os }}-${{ matrix.php }}-
composer-${{ runner.os }}-
- name: Install composer dependencies
run: composer install --no-progress --no-interaction --prefer-${{ matrix.package-release }}
- name: Run unit tests
run: vendor/bin/phpunit --coverage-text --coverage-clover=coverage.clover
- name: Upload to Scrutinizer
continue-on-error: true
run: |
composer global require scrutinizer/ocular
~/.composer/vendor/bin/ocular code-coverage:upload --format=php-clover coverage.clover