From c99c81e0ff0ea3c2e257001c62802a159579c838 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Martin=20=C5=A0ach?= Date: Sun, 24 Nov 2024 23:24:08 +0100 Subject: [PATCH] Add static analysis workflow --- .github/workflows/static_analysis.yml | 10 ++++++++++ 1 file changed, 10 insertions(+) create mode 100644 .github/workflows/static_analysis.yml diff --git a/.github/workflows/static_analysis.yml b/.github/workflows/static_analysis.yml new file mode 100644 index 0000000000..9998b67118 --- /dev/null +++ b/.github/workflows/static_analysis.yml @@ -0,0 +1,10 @@ +name: Run static analysis + +on: + workflow_dispatch: + schedule: + - cron: "0 0 * * *" + +jobs: + static_analysis: + uses: Prusa-Development/PrusaSlicer-Actions/.github/workflows/static_analysis.yml@master