mirror of
https://github.com/placeAtlas/atlas.git
synced 2025-01-16 15:06:56 +01:00
Merge branch 'master' of https://github.com/placeAtlas/atlas into cleanup
This commit is contained in:
commit
4f1977b062
1 changed files with 25 additions and 0 deletions
25
.github/workflows/qodana.yml
vendored
Normal file
25
.github/workflows/qodana.yml
vendored
Normal file
|
@ -0,0 +1,25 @@
|
|||
name: Qodana
|
||||
on:
|
||||
workflow_dispatch:
|
||||
pull_request:
|
||||
push:
|
||||
branches:
|
||||
- master
|
||||
|
||||
jobs:
|
||||
qodana:
|
||||
runs-on: ubuntu-latest
|
||||
steps:
|
||||
- uses: actions/checkout@v3
|
||||
with:
|
||||
fetch-depth: 0
|
||||
- name: 'Qodana Scan'
|
||||
uses: JetBrains/qodana-action@main
|
||||
env:
|
||||
QODANA_TOKEN: ${{ secrets.QODANA_TOKEN }}
|
||||
- uses: github/codeql-action/upload-sarif@v2
|
||||
with:
|
||||
sarif_file: ${{ runner.temp }}/qodana/results/qodana.sarif.json
|
||||
env:
|
||||
QODANA_TOKEN: ${{ secrets.QODANA_TOKEN }}
|
||||
|
Loading…
Reference in a new issue