Skip to content

Commit

Permalink
Change the name of Static Check without pylint (apache#10690)
Browse files Browse the repository at this point in the history
  • Loading branch information
kaxil authored Sep 3, 2020
1 parent 2f5bf8b commit a103280
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/build-images-workflow-run.yml
Original file line number Diff line number Diff line change
Expand Up @@ -99,7 +99,7 @@ jobs:
cancelMode: failedJobs
sourceRunId: ${{ github.event.workflow_run.id }}
jobNameRegexps: >
["^Static checks.*", "^Build docs$", "^Spell check docs$", "^Backport packages$",
["^Pylint$", "^Static checks$", "^Build docs$", "^Spell check docs$", "^Backport packages$",
"^Checks: Helm tests$", "^Test OpenAPI*"]
- name: "Extract canceled failed runs"

Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -155,7 +155,7 @@ jobs:

static-checks:
timeout-minutes: 30
name: "Static checks: no pylint"
name: "Static checks"
runs-on: ubuntu-latest
needs: [ci-images]
env:
Expand All @@ -182,14 +182,14 @@ jobs:
run: ./scripts/ci/tools/ci_free_space_on_ci.sh
- name: "Prepare CI image ${{env.PYTHON_MAJOR_MINOR_VERSION}}:${{ env.GITHUB_REGISTRY_PULL_IMAGE_TAG }}"
run: ./scripts/ci/images/ci_prepare_ci_image_on_ci.sh
- name: "Static checks: no pylint"
- name: "Static checks: except pylint"
run: ./scripts/ci/static_checks/run_static_checks.sh
env:
VERBOSE: false

static-checks-pylint:
timeout-minutes: 30
name: "Static checks: pylint"
name: "Pylint"
runs-on: ubuntu-latest
needs: [ci-images]
if: github.repository == 'apache/airflow' || github.event_name != 'schedule'
Expand Down

0 comments on commit a103280

Please sign in to comment.