Skip to content

Commit 694ec2e

Browse files
committed
JM review actions
1 parent 940e9f5 commit 694ec2e

File tree

3 files changed

+15
-18
lines changed

3 files changed

+15
-18
lines changed

.github/workflows/coding-standards.yml

+2-18
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,8 @@ name: "Coding Standards"
33
on:
44
pull_request:
55
paths:
6-
- 'source/**/*.php'
6+
- "source/**/*.php"
7+
- ".github/workflows/*.yml"
78

89
env:
910
PHP_VERSION: "8.2"
@@ -29,20 +30,3 @@ jobs:
2930
# The -q option is required until phpcs v4 is released
3031
- name: "Run PHP_CodeSniffer"
3132
run: "vendor/bin/phpcs -q --no-colors --report=checkstyle | cs2pr"
32-
33-
rector:
34-
name: "Rector"
35-
runs-on: "ubuntu-22.04"
36-
37-
steps:
38-
- name: "Checkout"
39-
uses: "actions/checkout@v4"
40-
41-
- name: "Setup"
42-
uses: "./.github/actions/setup"
43-
with:
44-
php-version: ${{ env.PHP_VERSION }}
45-
driver-version: ${{ env.DRIVER_VERSION }}
46-
47-
- name: "Run Rector"
48-
run: "vendor/bin/rector --ansi --dry-run"

.github/workflows/static-analysis.yml

+1
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,7 @@ on:
44
pull_request:
55
paths:
66
- "source/**/*.php"
7+
- ".github/workflows/*.yml"
78
workflow_call:
89
inputs:
910
ref:

composer.json

+12
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
1+
{
2+
"name": "mongodb/docs-php-library",
3+
"description": "MongoDB PHP Library Documentation",
4+
"require": {
5+
"mongodb/mongodb": "^1.20"
6+
},
7+
"require-dev": {
8+
"doctrine/coding-standard": "^12.0",
9+
"squizlabs/php_codesniffer": "^3.7",
10+
"vimeo/psalm": "^5.13"
11+
}
12+
}

0 commit comments

Comments
 (0)