-
-
Notifications
You must be signed in to change notification settings - Fork 19
64 lines (52 loc) · 1.62 KB
/
vortex-test-installer.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
# This action is used for Vortex maintenance. It will not be used in the scaffolded project.
name: Vortex - Test installer
on:
push:
branches:
- develop
pull_request:
branches:
- develop
- 'feature/**'
- 'bugfix/**'
jobs:
vortex-test-installer:
runs-on: ubuntu-latest
strategy:
matrix:
php-versions: ['8.2', '8.3', '8.4']
steps:
- name: Checkout code
uses: actions/checkout@v4
- name: Setup PHP
uses: shivammathur/setup-php@v2
with:
php-version: ${{ matrix.php-versions }}
coverage: pcov
ini-values: pcov.directory=.
- name: Install dependencies
run: composer install
working-directory: .vortex/installer
- name: Check coding standards
run: composer lint
working-directory: .vortex/installer
- name: Run tests
run: composer test
working-directory: .vortex/installer
- name: Upload coverage report as an artifact
uses: actions/upload-artifact@v4
with:
name: ${{github.job}}-code-coverage-report-${{ matrix.php-versions }}
path: .vortex/installer/.coverage-html
- name: Upload coverage report to Codecov
uses: codecov/codecov-action@v5
with:
files: .vortex/installer/cobertura.xml
fail_ci_if_error: true
token: ${{ secrets.CODECOV_TOKEN }}
# Smoke test for PHAR.
- name: Build PHAR
run: composer build
working-directory: .vortex/installer
- name: Test PHAR
run: .vortex/installer/build/installer --quiet || exit 1