From 621114fa39fd1c934189d957618adec1a7c805a4 Mon Sep 17 00:00:00 2001 From: del-zhenwu Date: Mon, 29 Nov 2021 15:48:57 +0800 Subject: [PATCH] Skip CI on ignoring given paths (#1078) * Skip CI on ignoring given paths Signed-off-by: del-zhenwu * Fix ignoring path with using Signed-off-by: del-zhenwu --- .github/workflows/build.yml | 38 ++++++++++++++++++------------------- .github/workflows/lint.yml | 23 ++++++++++++++++++++++ 2 files changed, 41 insertions(+), 20 deletions(-) create mode 100644 .github/workflows/lint.yml diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 11b788889..6b3414759 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -1,27 +1,25 @@ name: build -on: [push, pull_request] +on: + push: + paths-ignore: + - 'demo/**' + - '.dev/**' + - 'docker/**' + - 'tools/**' + - '**.md' + + pull_request: + paths-ignore: + - 'demo/**' + - '.dev/**' + - 'docker/**' + - 'tools/**' + - 'docs/**' + - 'docs_zh-CN/**' + - '**.md' jobs: - lint: - runs-on: ubuntu-18.04 - steps: - - uses: actions/checkout@v2 - - name: Set up Python 3.7 - uses: actions/setup-python@v2 - with: - python-version: 3.7 - - name: Install pre-commit hook - run: | - pip install pre-commit - pre-commit install - - name: Linting - run: pre-commit run --all-files - - name: Check docstring coverage - run: | - pip install interrogate - interrogate -v --ignore-init-method --ignore-module --ignore-nested-functions --exclude mmseg/ops --ignore-regex "__repr__" --fail-under 80 mmseg - build_cpu: runs-on: ubuntu-18.04 strategy: diff --git a/.github/workflows/lint.yml b/.github/workflows/lint.yml new file mode 100644 index 000000000..e87716ee9 --- /dev/null +++ b/.github/workflows/lint.yml @@ -0,0 +1,23 @@ +name: lint + +on: [push, pull_request] + +jobs: + lint: + runs-on: ubuntu-18.04 + steps: + - uses: actions/checkout@v2 + - name: Set up Python 3.7 + uses: actions/setup-python@v2 + with: + python-version: 3.7 + - name: Install pre-commit hook + run: | + pip install pre-commit + pre-commit install + - name: Linting + run: pre-commit run --all-files + - name: Check docstring coverage + run: | + pip install interrogate + interrogate -v --ignore-init-method --ignore-module --ignore-nested-functions --exclude mmseg/ops --ignore-regex "__repr__" --fail-under 80 mmseg