Skip to content

Commit

Permalink
Add Codacy analysis workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
Maxhy committed Oct 14, 2023
1 parent dce32eb commit 28ad741
Showing 1 changed file with 32 additions and 0 deletions.
32 changes: 32 additions & 0 deletions .github/workflows/codacy-analysis.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,32 @@
name: Codacy Security Scan

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

jobs:
codacy-security-scan:
name: Codacy Security Scan
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@main

- name: Run Codacy Analysis CLI
uses: codacy/codacy-analysis-cli-action@master
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 28ad741

Please sign in to comment.