Merge pull request #73 from zhamao-robot/integration-test-ignore-docs

修改集成测试配置以忽略文档变更
This commit is contained in:
Jerry Ma
2022-03-24 16:40:48 +08:00
committed by GitHub

View File

@@ -4,6 +4,9 @@ on:
push: push:
branches: branches:
- master - master
paths-ignore:
- '**.md'
- 'docs/**'
pull_request: pull_request:
branches: branches:
- master - master
@@ -13,6 +16,9 @@ on:
- reopened - reopened
- ready_for_review - ready_for_review
- review_requested - review_requested
paths-ignore:
- '**.md'
- 'docs/**'
jobs: jobs:
integration: integration:
@@ -56,4 +62,4 @@ jobs:
run: "composer analyse" run: "composer analyse"
- name: Run PHP CS Fixer Check - name: Run PHP CS Fixer Check
run: "./vendor/bin/php-cs-fixer fix --dry-run --diff" run: "./vendor/bin/php-cs-fixer fix --dry-run --diff"