This repository has been archived by the owner on Mar 10, 2024. It is now read-only.
Static Code Analysis #160
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 Code Analysis | |
on: | |
push: | |
branches: [ master ] | |
pull_request: | |
branches: [ master ] | |
schedule: | |
- cron: '43 11 * * 3' | |
workflow_dispatch: | |
permissions: | |
contents: read | |
jobs: | |
clj-holmes: | |
name: Run clj-holmes scanning | |
runs-on: ubuntu-latest | |
permissions: | |
contents: read | |
security-events: write | |
steps: | |
- name: Checkout code | |
uses: actions/[email protected] | |
- name: Scan code | |
uses: clj-holmes/clj-holmes-action@53daa4da4ff495cccf791e4ba4222a8317ddae9e | |
with: | |
output-type: 'sarif' | |
output-file: 'clj-holmes-results.sarif' | |
fail-on-result: 'false' | |
- name: Upload analysis results to GitHub Security tab | |
uses: github/codeql-action/upload-sarif@v2 | |
with: | |
sarif_file: ${{github.workspace}}/clj-holmes-results.sarif |