-
Notifications
You must be signed in to change notification settings - Fork 12
39 lines (31 loc) · 918 Bytes
/
tests-windows.yml
File metadata and controls
39 lines (31 loc) · 918 Bytes
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
name: 'Tests (Windows)'
on:
push:
pull_request:
schedule:
- cron: '45 6 * * *'
jobs:
build:
runs-on: windows-latest
strategy:
fail-fast: false
matrix:
php: ['7.1', '7.2', '7.3', '7.4', '8.0', '8.1', '8.2', '8.3', '8.4']
steps:
- uses: actions/checkout@v5
- name: Setup PHP
uses: shivammathur/setup-php@v2
with:
php-version: ${{ matrix.php }}
extensions: bz2
tools: composer:v2
- name: Validate composer.json and composer.lock
run: composer validate
- name: Install dependencies
# Remove xdebug dependency as performance testing is not relevant at this point.
run: |
composer remove --dev --no-update ext-xdebug
composer install --prefer-dist --no-progress --no-suggest
- name: Run test suite
run: |
vendor/bin/phpunit --colors