forked from googleapis/google-api-php-client
-
Notifications
You must be signed in to change notification settings - Fork 2
64 lines (62 loc) · 2.33 KB
/
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
name: Test Suite
on:
push:
branches:
- master
pull_request:
jobs:
test:
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
php: [ "5.6", "7.0", "7.1", "7.2", "7.3", "7.4", "8.0", "8.1" ]
composer-flags: [""]
include:
- php: "5.6"
composer-flags: "--prefer-lowest "
- php: "8.0"
composer-flags: "--prefer-lowest "
- php: "8.1"
composer-flags: "--prefer-lowest "
name: PHP ${{ matrix.php }} ${{ matrix.composer-flags }}Unit Test
steps:
- uses: actions/checkout@v2
- name: Setup PHP
uses: shivammathur/setup-php@v2
with:
php-version: ${{ matrix.php }}
- name: Install Dependencies
uses: nick-invision/retry@v1
with:
timeout_minutes: 10
max_attempts: 3
command: composer update ${{ matrix.composer-flags }}
- if: ${{ matrix.php == '8.0' || ( matrix.composer-flags == '--prefer-lowest' && matrix.php != '8.1' ) }}
name: Update guzzlehttp/ringphp dependency
run: composer update guzzlehttp/ringphp
- if: ${{ matrix.php == '8.1' }}
name: Update guzzlehttp/ringphp dependency
run: composer update guzzlehttp/ringphp --ignore-platform-reqs
- if: ${{ matrix.php == '8.1' }}
name: Update phpunit/phpunit dependency
run: composer update phpunit/phpunit phpspec/prophecy-phpunit --with-dependencies --ignore-platform-reqs
- name: Run Script
run: vendor/bin/phpunit
style:
runs-on: ubuntu-latest
name: PHP Style Check
steps:
- uses: actions/checkout@v2
- name: Setup PHP
uses: shivammathur/setup-php@v2
with:
php-version: "7.3"
- name: Install Dependencies
uses: nick-invision/retry@v1
with:
timeout_minutes: 10
max_attempts: 3
command: composer install
- name: Run Script
run: vendor/bin/phpcs src --standard=phpcs.xml.dist -np