-
Notifications
You must be signed in to change notification settings - Fork 7
79 lines (69 loc) · 2.04 KB
/
test.yaml
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:
schedule:
- cron: '00 1 * * 2'
push:
branches:
- master
pull_request:
branches:
- master
env:
PHP_MIN: 8.1
jobs:
run:
runs-on: ubuntu-latest
strategy:
matrix:
include:
- php-version: '8.1'
main: true
composer-flag: '--prefer-lowest'
- php-version: '8.1'
composer-flag: ''
- php-version: '8.2'
composer-flag: '--prefer-lowest'
- php-version: '8.2'
composer-flag: ''
- php-version: '8.3'
composer-flag: '--prefer-lowest'
- php-version: '8.3'
composer-flag: ''
- php-version: '8.4'
nightly: true
name: PHP ${{ matrix.php-version }} ${{ matrix.composer-flag }}
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Setup PHP
uses: shivammathur/setup-php@v2
with:
coverage: pcov
php-version: ${{ matrix.php-version }}
- name: Get Composer Cache Directory
id: composer-cache
run: echo "dir=$(composer config cache-files-dir)" >> $GITHUB_OUTPUT
- uses: actions/cache@v3
with:
path: ${{ steps.composer-cache.outputs.dir }}
key: ${{ runner.os }}-composer-${{ hashFiles('**/composer.json') }}
restore-keys: ${{ runner.os }}-composer-
- name: Install dependencies ${{ matrix.composer-flag }}
run: composer update --prefer-install=dist ${{ matrix.composer-flag }} --dev
- name: Run tests
continue-on-error: ${{ matrix.nightly }}
run: ./vendor/bin/phpunit
- name: Run code style check
if: ${{ matrix.main }}
run: ./vendor/bin/ecs
- name: Run rector
if: ${{ matrix.main }}
run: ./vendor/bin/rector --dry-run
- name: Upload coverage reports to Codecov
if: ${{ matrix.main }}
uses: codecov/codecov-action@v3
with:
fail_ci_if_error: true
files: ./.tmp/clover.xml
env:
CODECOV_TOKEN: ${{ secrets.CODECOV_TOKEN }}