Skip to content

build(exe): use old systemd.pc variable names #99

build(exe): use old systemd.pc variable names

build(exe): use old systemd.pc variable names #99

Workflow file for this run

# SPDX-FileCopyrightText: 2022 Andrea Pappacoda
#
# SPDX-License-Identifier: FSFAP
name: codacy
on:
push:
branches: main
pull_request:
branches: main
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true
permissions:
contents: read
security-events: write
jobs:
codacy:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Run 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 handover 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@v2
with:
sarif_file: results.sarif