-
-
Notifications
You must be signed in to change notification settings - Fork 50
54 lines (52 loc) · 1.48 KB
/
integration-tests.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
# yaml-language-server: $schema=https://json.schemastore.org/github-workflow
name: Integration Tests
on:
push:
branches:
- 'develop'
- 'trunk'
- 'master'
pull_request:
branches:
- '**'
schedule:
# Once weekly on Mondays at 05:00 UTC.
#
# ┌───────────── minute (0 - 59)
# │ ┌────────── hour (0 - 23)
# │ │ ┌─────── day of the month (1 - 31)
# │ │ │ ┌──── month (1 - 12 or JAN-DEC)
# │ │ │ │ ┌─ day of the week (0 - 6 or SUN-SAT)
# │ │ │ │ │
# │ │ │ │ │
# │ │ │ │ │
- cron: '0 5 * * 1'
workflow_dispatch:
jobs:
test:
name: WP ${{ matrix.wp }} / PHP ${{ matrix.php }}
uses: johnbillion/plugin-infrastructure/.github/workflows/reusable-integration-tests.yml@trunk
strategy:
matrix:
wp:
- 'nightly'
- '6.3'
- '6.2'
- '6.1'
php:
- '8.2'
- '8.1'
- '8.0'
- '7.4'
- '7.2'
dev:
- ${{ github.ref_name == 'develop' }}
exclude:
# Only run the nightly tests on the develop branch.
- wp: 'nightly'
dev: false
fail-fast: false
with:
wp: ${{ matrix.wp }}
php: ${{ matrix.php }}
node: false