-
Notifications
You must be signed in to change notification settings - Fork 3
63 lines (51 loc) · 1.4 KB
/
sca.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: Static Code Analysis
on:
push:
branches:
- master
- 'renovate/**'
pull_request:
branches:
- master
jobs:
sca:
name: SCA
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
with:
fetch-depth: 0
# Setup DDEV
- name: Setup DDEV
uses: ddev/github-action-setup-ddev@v1
with:
autostart: false
# Install dependencies
- name: Install Composer dependencies
run: |
ddev service disable selenium-chrome
ddev start
ddev composer config github-oauth.github.com ${{ secrets.GITHUB_TOKEN }}
ddev composer install
- name: Composer audit
run: ddev composer audit
- name: PHP lint
run: ddev composer ci:php:lint
- name: PHP CS Fixer
run: ddev composer ci:php:fixer
- name: PHPStan
run: ddev composer ci:php:stan
- name: XML lint
run: ddev composer ci:xml:lint
- name: YAML lint
run: ddev composer ci:yaml:lint
- uses: staabm/annotate-pull-request-from-checkstyle-action@v1
name: Annotate PHP CS Fixer
with:
files: php-cs-fixer.xml
notices-as-warnings: true
- uses: staabm/annotate-pull-request-from-checkstyle-action@v1
name: Annotate PHPStan
with:
files: phpstan.xml
notices-as-warnings: true