Explorar el Código

Add qodana as github action

Laurent Destailleur hace 2 años
padre
commit
c6dc598944
Se han modificado 2 ficheros con 18 adiciones y 0 borrados
  1. 18 0
      .github/workflows/code_quality.yml
  2. 0 0
      .github/workflows/exakat.yml.disabled

+ 18 - 0
.github/workflows/code_quality.yml

@@ -0,0 +1,18 @@
+name: Qodana
+on:
+  workflow_dispatch:
+  pull_request:
+  push:
+    branches:
+      - main
+      - 'releases/*'
+
+jobs:
+  qodana:
+    runs-on: ubuntu-latest
+    steps:
+      - uses: actions/checkout@v3
+        with:
+          fetch-depth: 0
+      - name: 'Qodana Scan'
+        uses: JetBrains/qodana-action@v2022.3.0

+ 0 - 0
.github/workflows/exakat.yml → .github/workflows/exakat.yml.disabled