-
Notifications
You must be signed in to change notification settings - Fork 77
72 lines (71 loc) · 2.19 KB
/
system-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
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
# Datenstrom Yellow system tests
name: System tests
on: [push, pull_request]
jobs:
installation-tests:
name: Installation on ${{ runner.os }}
strategy:
matrix:
os: [ubuntu-latest, macos-latest, windows-latest]
runs-on: ${{ matrix.os }}
steps:
- name: Check out code
uses: actions/checkout@v3
- name: Set up PHP
uses: shivammathur/setup-php@v2
with:
php-version: latest
extensions: curl, gd, mbstring, zip
ini-file: development
coverage: none
tools: none
- name: Set up problem matcher
run: echo "::add-matcher::${{ runner.tool_cache }}/php.json"
- name: Set up test environment
run: php yellow.php skip installation
extension-tests:
name: Extensions on ${{ runner.os }}
strategy:
matrix:
os: [ubuntu-latest]
runs-on: ${{ matrix.os }}
steps:
- name: Check out code
uses: actions/checkout@v3
- name: Set up PHP
uses: shivammathur/setup-php@v2
with:
php-version: latest
extensions: curl, gd, mbstring, zip
ini-file: development
coverage: none
tools: none
- name: Set up problem matcher
run: echo "::add-matcher::${{ runner.tool_cache }}/php.json"
- name: Set up test environment
run: php .github/workflows/make-tests.php
- name: Run tests
run: cd tests; php yellow.php generate tests
php-tests:
name: PHP ${{ matrix.php }} on ${{ runner.os }}
strategy:
matrix:
php: [8.3, 8.2, 8.1, 8.0, 7.4, 7.3, 7.2, 7.1, 7.0]
runs-on: ubuntu-latest
steps:
- name: Check out code
uses: actions/checkout@v3
- name: Set up PHP
uses: shivammathur/setup-php@v2
with:
php-version: ${{ matrix.php }}
extensions: curl, gd, mbstring, zip
ini-file: development
coverage: none
tools: none
- name: Set up problem matcher
run: echo "::add-matcher::${{ runner.tool_cache }}/php.json"
- name: Set up test environment
run: php yellow.php skip installation
- name: Run tests
run: php yellow.php generate tests