-
Notifications
You must be signed in to change notification settings - Fork 52
33 lines (27 loc) · 847 Bytes
/
Copy pathcode_analysis.yaml
File metadata and controls
33 lines (27 loc) · 847 Bytes
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
name: Code Analysis
on:
pull_request: null
push:
branches:
- master
jobs:
code_analysis:
strategy:
fail-fast: false
matrix:
actions:
-
name: 'Coding Standard'
run: composer check-cs
name: ${{ matrix.actions.name }}
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
# see https://github.com/shivammathur/setup-php
- uses: shivammathur/setup-php@v2
with:
php-version: 7.3
coverage: none
# composer install cache - https://github.com/ramsey/composer-install
- uses: "ramsey/composer-install@v1"
- run: ${{ matrix.actions.run }}