-
Notifications
You must be signed in to change notification settings - Fork 196
128 lines (99 loc) · 3.14 KB
/
php.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
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
name: CI
on:
push:
branches:
- master
pull_request:
types: [opened, synchronize, reopened]
jobs:
build:
strategy:
max-parallel: 15
matrix:
operating-system: [ubuntu-latest, macOS-latest]
php-versions: ['8.1', '8.2']
# TODO : enable tests on windows
#include:
# - operating-system: windows-latest
# php-versions: 8.1
name: PHP ${{ matrix.php-versions }} Test on ${{ matrix.operating-system }}
runs-on: ${{ matrix.operating-system }}
steps:
- uses: actions/checkout@v4
- name: Setup PHP
uses: shivammathur/setup-php@2.28.0
with:
php-version: ${{ matrix.php-versions }}
extensions: mbstring, dom, intl, iconv
- name: Validate composer.json and composer.lock
run: composer validate
- name: Install dependencies
run: composer install --prefer-dist --no-progress --no-suggest
- name: Install tools
run: ./scripts/install_tools.sh
shell: bash
- name: Check formatting
run: composer run-script lint
env:
PHP_CS_FIXER_IGNORE_ENV: 1
- name: Run test suite
run: composer run-script test
frontend:
name: Frontend tests
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Setup PHP
uses: shivammathur/setup-php@2.28.0
with:
php-version: '8.1'
extensions: mbstring, dom, intl, iconv
- name: Install dependencies
run: composer install --prefer-dist --no-progress --no-suggest
- name: Generate documentation
run: bin/daux generate
- name: Generate documentation in single file
run: bin/daux generate --format=html-file --destination=static-single
- name: Setup Node.js
uses: actions/setup-node@v4.0.1
with:
node-version: '20.x'
cache: 'yarn'
- name: yarn install
run: yarn install
- name: yarn build
run: yarn build
- name: yarn test
run: yarn test
sonarcloud:
name: "SonarCloud"
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
with:
fetch-depth: 0
- name: Setup PHP
uses: shivammathur/setup-php@2.28.0
with:
php-version: 8.1
extensions: mbstring, dom, intl, iconv
coverage: xdebug
- name: Install dependencies
run: composer install --prefer-dist --no-progress --no-suggest
- name: Install tools
run: ./scripts/install_tools.sh
- name: Run test suite
run: composer run-script test:coverage
- name: Fix code coverage paths
run: sed -i 's@'$GITHUB_WORKSPACE'@/github/workspace/@g' coverage.xml
## Set the latest tag to use to detect "new code" periods
- id: project_version
run: echo "project_version=$(git tag -l --sort=-creatordate --format='%(refname:short)' | head -n1)" >> $GITHUB_OUTPUT
- name: SonarCloud Scan
uses: SonarSource/sonarcloud-github-action@v1.9
with:
args: >
-Dsonar.projectVersion=`${{ steps.project_version.outputs.project_version }}`
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
SONAR_TOKEN: ${{ secrets.SONAR_TOKEN }}