Skip to content

Commit

Permalink
Turn off differential pylint (NOAA-EMC#1296)
Browse files Browse the repository at this point in the history
Turns off the differential pylint test until it can be evaluated further.
The YAML block is left in commented form in case we wish to turn it back
on later.
  • Loading branch information
WalterKolczynski-NOAA committed Feb 6, 2023
1 parent bdb0db7 commit 2615fff
Showing 1 changed file with 21 additions and 21 deletions.
42 changes: 21 additions & 21 deletions .github/workflows/linters.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -36,29 +36,29 @@ jobs:
name: Differential ShellCheck SARIF
path: ${{ steps.ShellCheck.outputs.sarif }}

lint-python:
runs-on: ubuntu-latest
# lint-python:
# runs-on: ubuntu-latest

permissions:
security-events: write
# permissions:
# security-events: write

steps:
- name: Checkout code
uses: actions/checkout@v3
# steps:
# - name: Checkout code
# uses: actions/checkout@v3

- id: VCS_Diff_Lint
name: Lint python scripts
uses: fedora-copr/vcs-diff-lint-action@v1
# - id: VCS_Diff_Lint
# name: Lint python scripts
# uses: fedora-copr/vcs-diff-lint-action@v1

- if: ${{ always() }}
name: Upload artifact with detected defects in SARIF format
uses: actions/upload-artifact@v3
with:
name: VCS Diff Lint SARIF
path: ${{ steps.VCS_Diff_Lint.outputs.sarif }}
# - if: ${{ always() }}
# name: Upload artifact with detected defects in SARIF format
# uses: actions/upload-artifact@v3
# with:
# name: VCS Diff Lint SARIF
# path: ${{ steps.VCS_Diff_Lint.outputs.sarif }}

- if: ${{ failure() }}
name: Upload SARIF to GitHub using github/codeql-action/upload-sarif
uses: github/codeql-action/upload-sarif@v2
with:
sarif_file: ${{ steps.VCS_Diff_Lint.outputs.sarif }}
# - if: ${{ failure() }}
# name: Upload SARIF to GitHub using github/codeql-action/upload-sarif
# uses: github/codeql-action/upload-sarif@v2
# with:
# sarif_file: ${{ steps.VCS_Diff_Lint.outputs.sarif }}

0 comments on commit 2615fff

Please sign in to comment.