-
Notifications
You must be signed in to change notification settings - Fork 2
70 lines (59 loc) · 1.45 KB
/
testkit.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
name: Testkit
on:
push:
paths:
- "**.php"
- "phpcs.xml"
- ".github/workflows/testkit.yml"
pull_request:
paths:
- "**.php"
- "phpcs.xml"
- ".github/workflows/testkit.yml"
jobs:
testkit71:
runs-on: ubuntu-latest
strategy:
matrix:
php-versions: [ '7.1' ]
name: PHP ${{ matrix.php-versions }}
steps:
- uses: actions/checkout@v2
with:
fetch-depth: 0
- name: Setup PHP version
uses: shivammathur/setup-php@v2
with:
php-version: '7.1'
tools: phpcs, composer
- name: Get php version
run: 'php -v'
- name: Setup Composer dependencies
run: 'composer update'
# - name: Run PHPUnit Tests
# run: 'php ./vendor/bin/phpunit ./tests/'
- name: Run PHPCS
run: 'phpcs'
testkit81:
runs-on: ubuntu-latest
strategy:
matrix:
php-versions: [ '8.1' ]
name: PHP ${{ matrix.php-versions }}
steps:
- uses: actions/checkout@v2
with:
fetch-depth: 0
- name: Setup PHP version
uses: shivammathur/setup-php@v2
with:
php-version: '8.1'
tools: phpcs, composer
- name: Get php version
run: 'php -v'
- name: Setup Composer dependencies
run: 'composer update'
# - name: Run PHPUnit Tests
# run: 'php ./vendor/bin/phpunit ./tests/'
- name: Run PHPCS
run: 'phpcs'