-
Notifications
You must be signed in to change notification settings - Fork 9
84 lines (83 loc) · 2.21 KB
/
tests.yaml
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
84
name: Tests (8.x)
on:
push:
branches:
- main
pull_request:
workflow_dispatch:
jobs:
code_style:
name: Test code style
runs-on: ubuntu-latest
strategy:
matrix:
version: ['8.2']
steps:
- name: Setup PHP
uses: shivammathur/setup-php@v2
with:
php-version: ${{ matrix.version }}
- name: Checkout Code
uses: actions/checkout@v2
- name: Install Dependencies
run: composer install
- name: Test code style
run: composer fixer -- --dry-run
static_analysis:
name: Static analysis
runs-on: ubuntu-latest
strategy:
matrix:
version: ['8.2']
steps:
- name: Setup PHP
uses: shivammathur/setup-php@v2
with:
php-version: ${{ matrix.version }}
- name: Checkout Code
uses: actions/checkout@v2
- name: Install Dependencies
run: composer install
- name: Run static analysis
run: composer phpstan
# tests:
# name: Tests
# runs-on: ubuntu-latest
# strategy:
# matrix:
# version: ['8.0']
# steps:
# - name: Setup PHP
# uses: shivammathur/setup-php@v2
# with:
# php-version: ${{ matrix.version }}
# - name: Checkout Code
# uses: actions/checkout@v2
# with:
# submodules: true
# - name: Install Dependencies
# run: composer install
# - name: Run tests
# run: composer phpunit
# coverage:
# name: Report Coverage
# runs-on: ubuntu-latest
# steps:
# - name: Setup PHP
# uses: shivammathur/setup-php@v2
# with:
# php-version: 8.0
# - name: Checkout Code
# uses: actions/checkout@v2
# with:
# submodules: true
# - name: Install Dependencies
# run: composer install
# - name: Generate Coverage
# run: composer phpunit -- --coverage-clover ./build/logs/clover.xml
# - name: Download Coverage Client
# run: wget https://github.com/php-coveralls/php-coveralls/releases/download/v2.4.3/php-coveralls.phar
# - name: Publish Coverage (Coveralls)
# run: php php-coveralls.phar -v
# env:
# COVERALLS_REPO_TOKEN: ${{ secrets.GITHUB_TOKEN }}