2025-01-23 18:15:21 +01:00
|
|
|
on:
|
|
|
|
push:
|
|
|
|
paths-ignore:
|
|
|
|
- Wiki/**
|
|
|
|
- Benchmarks/**
|
|
|
|
- .run/**
|
|
|
|
|
|
|
|
|
|
|
|
jobs:
|
|
|
|
preprocess:
|
2025-01-23 18:25:21 +01:00
|
|
|
env:
|
|
|
|
RUNNER_TOOL_CACHE: /toolcache
|
2025-01-23 18:15:21 +01:00
|
|
|
runs-on: ubuntu-latest
|
|
|
|
outputs:
|
|
|
|
sanitized_branch_name: ${{ steps.sanitize.outputs.sanitized_branch_name }}
|
|
|
|
steps:
|
|
|
|
- name: Sanitize branch name
|
|
|
|
id: sanitize
|
|
|
|
run: echo "::set-output name=sanitized_branch_name::$(echo ${{ github.ref_name }} | sed 's/\//-/g')"
|
|
|
|
|
2025-01-23 18:25:21 +01:00
|
|
|
qodana:
|
|
|
|
env:
|
|
|
|
RUNNER_TOOL_CACHE: /toolcache
|
|
|
|
QODANA_TOKEN: ${{ secrets.QODANA_TOKEN }}
|
2025-01-23 18:15:21 +01:00
|
|
|
runs-on: ubuntu-latest
|
2025-01-23 18:25:21 +01:00
|
|
|
container: jetbrains/qodana-dotnet:2024.3
|
2025-01-23 18:15:21 +01:00
|
|
|
steps:
|
2025-01-23 18:25:21 +01:00
|
|
|
- name: Idk
|
2025-01-23 18:15:21 +01:00
|
|
|
run: |
|
2025-01-23 18:25:21 +01:00
|
|
|
qodana scan
|