-
Notifications
You must be signed in to change notification settings - Fork 11
49 lines (41 loc) · 1.06 KB
/
ci.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
name: CI
on:
push:
branches: [main]
pull_request:
branches: [main]
schedule:
- cron: "0 0 * * 0"
jobs:
build:
runs-on: ubuntu-latest
continue-on-error: true
strategy:
matrix:
include:
- task: ci-php-7.3-runkit-1.0.11
- task: ci-php-7.3-runkit-2.1.0
- task: ci-php-7.3-runkit-3.0.0
- task: ci-php-7.3-runkit-4.0.0a6
- task: ci-php-7.4-runkit-4.0.0a6
- task: ci-php-8.0-runkit-4.0.0a6
- task: ci-php-8.1-runkit-4.0.0a6
- task: ci-php-7.3-uopz-6.1.2
- task: ci-php-7.4-uopz-6.1.2
- task: ci-php-8.0-uopz
- task: ci-php-8.1-uopz
steps:
- uses: actions/[email protected]
- name: Run tests "${{ matrix.task }}"
run: make "${{ matrix.task }}"
phpcs:
runs-on: ubuntu-latest
steps:
- uses: actions/[email protected]
- run: make phpcs-check
phpstan:
runs-on: ubuntu-latest
steps:
- uses: actions/[email protected]
- run: ./composer install
- run: make phpstan