We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent eaa0fcc commit b16a5d8Copy full SHA for b16a5d8
.github/workflows/codestyle.yml
@@ -0,0 +1,21 @@
1
+name: Run PHP-CS-Fixer
2
+
3
+on: [pull_request]
4
5
+jobs:
6
+ build:
7
+ runs-on: ubuntu-latest
8
9
+ steps:
10
+ - uses: actions/checkout@v4
11
12
+ - uses: actions/cache@v3
13
+ with:
14
+ path: .php-cs-fixer.cache
15
+ key: ${{ runner.OS }}-${{ github.repository }}-phpcsfixer-${{ github.sha }}
16
+ restore-keys: |
17
+ ${{ runner.OS }}-${{ github.repository }}-phpcsfixer-
18
19
+ - uses: docker://oskarstark/php-cs-fixer-ga
20
21
.github/workflows/phpstan.yml
@@ -1,4 +1,4 @@
-name: Run Shepherd
+name: Run PHPStan
on: [pull_request]
0 commit comments