Skip to content

Commit

Permalink
Merge pull request #43 from BlazingTwist/38-static-analysis-workflow
Browse files Browse the repository at this point in the history
Codacy Static Analysis Workflow
  • Loading branch information
BlazingTwist authored Jan 12, 2024
2 parents 23f7ff6 + ee3c4ef commit 0104c24
Showing 1 changed file with 31 additions and 0 deletions.
31 changes: 31 additions & 0 deletions .github/workflows/static-analysis.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,31 @@
name: Codacy Analysis CLI

on:
push:
branches: [ "master" ]
pull_request:
branches: [ "master" ]

jobs:
codacy-analysis-cli:
name: Codacy Analysis CLI
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v3
- name: Codacy Analysis CLI
uses: codacy/[email protected]
with:
output: results.sarif
format: sarif
# Adjust severity of non-security issues
gh-code-scanning-compat: true
# Force 0 exit code to allow SARIF file generation
# This will hand over control about PR rejection to the GitHub side
max-allowed-issues: 2147483647

# Upload the SARIF file generated in the previous step
- name: Upload SARIF results file
uses: github/codeql-action/upload-sarif@main
with:
sarif_file: results.sarif

0 comments on commit 0104c24

Please sign in to comment.