-
Notifications
You must be signed in to change notification settings - Fork 121
76 lines (63 loc) · 2.05 KB
/
ci-4.x.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
name: auditor-bundle 4.x CI
on:
schedule:
- cron: 30 0 * * *
pull_request:
branches:
- 4.x
push:
branches:
- 4.x
jobs:
tests:
name: Tests PHP ${{ matrix.php }}, Symfony ${{ matrix.symfony }}
runs-on: ubuntu-latest
strategy:
matrix:
php:
- '7.2'
- '7.3'
- '7.4'
symfony:
- '3.4.*'
- '4.4.*'
- '5.*'
fail-fast: false
steps:
- name: Checkout
uses: actions/checkout@v4
with:
ref: 4.x
- name: Setup PHP
uses: shivammathur/setup-php@v2
with:
php-version: ${{ matrix.php }}
extensions: composer:v2, flex, pcov
coverage: pcov
- name: Configure Symfony
run: |
composer global config --no-plugins allow-plugins.symfony/flex true
composer global require --no-progress --no-scripts --no-plugins symfony/flex
composer config extra.symfony.require "${{ matrix.symfony }}"
- name: Get Composer Cache Directory
id: composer-cache
run: echo "dir=$(composer config cache-files-dir)" >> $GITHUB_OUTPUT
- name: Cache dependencies
uses: actions/cache@v4
with:
path: ${{ steps.composer-cache.outputs.dir }}
key: ${{ matrix.php }}-composer-${{ hashFiles('**/composer.json') }}
restore-keys: ${{ matrix.php }}-composer-
- name: Update project dependencies (3.4.*)
if: matrix.symfony == '3.4.*'
run: SYMFONY_REQUIRE="^3.4" composer update --no-progress --ansi --prefer-stable
- name: Update project dependencies (4.4.*)
if: matrix.symfony == '4.4.*'
run: SYMFONY_REQUIRE="^4.4" composer update --no-progress --ansi --prefer-stable
- name: Update project dependencies (5.*)
if: matrix.symfony == '5.*'
run: composer update --no-progress --ansi --prefer-stable
- name: Validate composer
run: composer validate --strict --no-check-lock
- name: Run tests
run: vendor/bin/phpunit