forked from immobiliare/ApnsPHP
-
Notifications
You must be signed in to change notification settings - Fork 10
83 lines (69 loc) · 2.42 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
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
# SPDX-FileCopyrightText: Copyright 2024 Move Agency Group B.V., Zwolle, The Netherlands
# SPDX-License-Identifier: CC0-1.0
name: Integration Tests
on: [push, pull_request]
jobs:
phpunit:
runs-on: ubuntu-latest
continue-on-error: ${{ matrix.experimental }}
name: "PHP-${{ matrix.php-versions }}: Integration"
strategy:
matrix:
php-versions: ['8.3']
experimental: [false]
include:
- php-versions: 8.4
experimental: true
steps:
- name: Checkout
uses: actions/checkout@v3
- name: Setup PHP
uses: shivammathur/setup-php@v2
with:
php-version: ${{ matrix.php-versions }}
extensions: uopz
tools: phpunit:9.5.x
- name: Setup problem matchers for PHP
run: echo "::add-matcher::${{ runner.tool_cache }}/php.json"
- name: Install dependencies
run: composer update
- name: Install JSONSchema
run: pipx install check-jsonschema
- name: Check payload
run: |
for type in "message"; do
echo "Generate:"
php ./get_payload.php "$type" | tee "payload.$type.json"
echo "\nValidate:"
check-jsonschema --schemafile "doc/schemas/$type.schema.json" "payload.$type.json"
done
sample_push:
runs-on: ubuntu-latest
continue-on-error: ${{ matrix.experimental }}
name: "PHP-${{ matrix.php-versions }}: Sample"
strategy:
matrix:
php-versions: ['8.1', '8.2', '8.3']
experimental: [false]
include:
- php-versions: 8.4
experimental: true
steps:
- name: Checkout
uses: actions/checkout@v3
- name: Setup PHP
uses: shivammathur/setup-php@v2
with:
php-version: ${{ matrix.php-versions }}
coverage: none
extensions: uopz
- name: Setup problem matchers for PHP
run: echo "::add-matcher::${{ runner.tool_cache }}/php.json"
- name: Install dependencies
run: composer update
- name: Setup fake certificates
run: |
touch entrust_root_certification_authority.pem
touch server_certificates_bundle_sandbox.pem
- name: Run sample
run: php sample_push.php | grep "Trying to initialize HTTP/2 backend"