Enable @openscanhub/devel
repository
#20
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: Differential Python Lint | |
on: | |
push: | |
pull_request: | |
branches: [ main ] | |
permissions: | |
contents: read | |
jobs: | |
lint: | |
runs-on: ubuntu-latest | |
permissions: | |
security-events: write | |
steps: | |
- name: Repository checkout | |
uses: actions/checkout@v4 | |
- id: VCS_Diff_Lint | |
name: VCS Diff Lint | |
uses: fedora-copr/vcs-diff-lint-action@v1 | |
- name: Upload SARIF to GitHub using github/codeql-action/upload-sarif | |
uses: github/codeql-action/upload-sarif@v3 | |
with: | |
sarif_file: ${{ steps.VCS_Diff_Lint.outputs.sarif }} | |
if: ${{ always() }} |