From b5a1fecb11d178708621bc7a92dce35a79906096 Mon Sep 17 00:00:00 2001 From: Tim Vaillancourt Date: Tue, 13 Jul 2021 16:30:58 +0200 Subject: [PATCH] Add CodeSQL actions workflow --- .github/workflows/codeql.yml | 24 ++++++++++++++++++++++++ 1 file changed, 24 insertions(+) create mode 100644 .github/workflows/codeql.yml diff --git a/.github/workflows/codeql.yml b/.github/workflows/codeql.yml new file mode 100644 index 0000000..57d94a1 --- /dev/null +++ b/.github/workflows/codeql.yml @@ -0,0 +1,24 @@ +name: "CodeQL analysis" + +on: + push: + schedule: + - cron: '0 0 * * 0' + +jobs: + codeql: + + strategy: + fail-fast: false + + runs-on: ubuntu-latest # windows-latest and ubuntu-latest are supported. macos-latest is not supported at this time. + + steps: + - name: Checkout repository + uses: actions/checkout@v2 + + - name: Initialize CodeQL + uses: github/codeql-action/init@v1 + + - name: Perform CodeQL Analysis + uses: github/codeql-action/analyze@v1