Skip to content

Commit d73bba4

Browse files
committed
Split tests
1 parent 8e5f8f5 commit d73bba4

File tree

2 files changed

+22
-4
lines changed

2 files changed

+22
-4
lines changed

.github/workflows/static-analysis.yml renamed to .github/workflows/coding-standards.yml

-4
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,3 @@ jobs:
2222
REQUIRE_DEV: true
2323
with:
2424
args: analyze --no-progress
25-
- name: "PHP-CS-Fixer"
26-
uses: "docker://oskarstark/php-cs-fixer-ga:2.19.0"
27-
with:
28-
args: --diff --dry-run

.github/workflows/php-cs-fixer.yml

+22
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,22 @@
1+
name: "Static analysis"
2+
3+
on:
4+
push:
5+
branches:
6+
- '[0-9]+.x'
7+
- '[0-9]+.[0-9]+'
8+
- '[0-9]+.[0-9]+.x'
9+
pull_request:
10+
11+
jobs:
12+
php-cs-fixer:
13+
name: "PHP-CS-Fixer"
14+
runs-on: "ubuntu-latest"
15+
16+
steps:
17+
- name: "Checkout"
18+
uses: "actions/checkout@v3"
19+
- name: "PHP-CS-Fixer"
20+
uses: "docker://oskarstark/php-cs-fixer-ga:2.19.0"
21+
with:
22+
args: --diff --dry-run

0 commit comments

Comments
 (0)