驱动添加 POST 包解析功能 #167
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Static Analysis | |
on: | |
push: | |
pull_request: | |
workflow_dispatch: | |
jobs: | |
pre_job: | |
runs-on: ubuntu-latest | |
outputs: | |
should_skip: ${{ steps.skip_check.outputs.should_skip }} | |
steps: | |
- id: skip_check | |
uses: fkirc/skip-duplicate-actions@v4 | |
with: | |
concurrent_skipping: same_content_newer | |
skip_after_successful_duplicate: true | |
paths: '["src/**", "tests/**"]' | |
do_not_skip: '["workflow_dispatch", "schedule"]' | |
analyse: | |
needs: pre_job | |
if: ${{ needs.pre_job.outputs.should_skip != 'true' }} | |
name: Static Analysis | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v2 | |
with: | |
fetch-depth: 0 | |
- name: Setup PHP | |
uses: sunxyw/workflows/setup-environment@main | |
with: | |
php-version: 7.4 | |
php-extensions: swoole, posix, json | |
operating-system: ubuntu-latest | |
use-cache: true | |
- name: Static Analysis | |
uses: sunxyw/workflows/static-analysis@main |