-
Notifications
You must be signed in to change notification settings - Fork 23
58 lines (47 loc) · 1.64 KB
/
ci.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
name: Docs Builder Tests
on:
push:
branches:
- main
pull_request:
release:
jobs:
composer-validate:
name: Validate composer.json
runs-on: ubuntu-latest
steps:
- name: 'Checkout code'
uses: actions/checkout@v4
- name: 'Install PHP'
uses: shivammathur/setup-php@v2
with:
coverage: none
php-version: 7.4
tools: composer:v2
ini-values: date.timezone=UTC
- name: Validate composer.json file
run: composer validate --strict
stable-tests:
name: "${{ matrix.operating-system }} / PHP ${{ matrix.php-version }}"
runs-on: ${{ matrix.operating-system }}
strategy:
fail-fast: false
matrix:
# add here only the PHP versions and OS used in GitHub CI (for tests)
# and on the symfony.com server (where the Symfony Docs are built)
operating-system: ['ubuntu-latest']
php-version: ['7.4', '8.3']
steps:
- name: 'Checkout code'
uses: actions/checkout@v4
- name: 'Install PHP'
uses: shivammathur/setup-php@v2
with:
coverage: none
php-version: ${{ matrix.php-version }}
tools: composer:v2
ini-values: date.timezone=UTC
- name: Install Composer Dependencies
run: composer install --no-progress
- name: PHPUnit
run: vendor/bin/simple-phpunit