-
Notifications
You must be signed in to change notification settings - Fork 341
63 lines (56 loc) · 1.6 KB
/
checks.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
name: checks
on: [pull_request, push]
permissions:
contents: read
pull-requests: read
jobs:
tests:
runs-on: ubuntu-latest
outputs:
all: ${{ steps.changes.outputs.all }}
strategy:
fail-fast: false
matrix:
php: [7.4, 8.0]
steps:
- name: Checkout code
uses: actions/checkout@v2
with:
fetch-depth: 1
- name: Setup PHP
uses: shivammathur/setup-php@v2
with:
php-version: ${{ matrix.php }}
extensions: dom, curl, libxml, mbstring, zip, gd, json, readline, xsl
tools: composer:v2
coverage: none
- name: Install dependencies
run: composer install --no-interaction --no-progress
- name: PHP Unit Test
run: CI/PHPUnit/run_tests.sh
env:
GHRUN: "yes"
- name: PHP CS Fixer
run: CI/PHP-CS-Fixer/run_check.sh
env:
GHRUN: "yes"
PR_NUMBER: ${{ github.event.number }}
GH_SHA: ${{ github.sha }}
- name: Language Sort Check
run: CI/sort_langfile_entries.sh check
env:
GHRUN: "yes"
PR_NUMBER: ${{ github.event.number }}
GH_SHA: ${{ github.sha }}
- name: Special Char Checker
run: CI/Special-Char-Checker/special-char-checker.sh
env:
GHRUN: "yes"
PR_NUMBER: ${{ github.event.number }}
GH_SHA: ${{ github.sha }}
- name: Copyright Check
run: CI/Copyright-Checker/copyright-checker.sh
env:
GHRUN: "yes"
PR_NUMBER: ${{ github.event.number }}
GH_SHA: ${{ github.sha }}