build: upload plugin and native libs to draft release as assets. #1256
Workflow file for this run
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: Code Quality | |
on: | |
workflow_dispatch: | |
push: | |
jobs: | |
qodana: | |
name: Qodana | |
runs-on: ubuntu-latest | |
steps: | |
# Check out current repository | |
- name: Fetch Sources | |
uses: actions/checkout@v4 | |
with: | |
fetch-depth: 0 | |
# Run Qodana inspections | |
- name: Qodana - Code Inspection | |
uses: JetBrains/[email protected] | |
# Upload Qodana report as GitHub code scanning SARIF file | |
- name: Qodana - Upload Github code scanning report | |
uses: github/codeql-action/upload-sarif@v3 | |
with: | |
sarif_file: ${{ runner.temp }}/qodana/results/qodana.sarif.json |