From 0b5e9812bd417fe4b696dec98926485b2d30a181 Mon Sep 17 00:00:00 2001 From: CrazyMax Date: Tue, 23 Jun 2020 21:46:04 +0200 Subject: [PATCH] Test CodeQL --- .github/workflows/codeql.yml | 33 +++++++++++++++++++++++++++++++++ 1 file changed, 33 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 00000000..c3139330 --- /dev/null +++ b/.github/workflows/codeql.yml @@ -0,0 +1,33 @@ +name: codeql + +on: + push: + pull_request: + schedule: + - cron: '0 12 * * 6' + +jobs: + codeql: + runs-on: ubuntu-latest + steps: + - + name: Checkout + uses: actions/checkout@v2 + with: + fetch-depth: 2 + - + name: Checkout HEAD on PR + if: ${{ github.event_name == 'pull_request' }} + run: | + git checkout HEAD^2 + - + name: Initialize CodeQL + uses: github/codeql-action/init@v1 + with: + languages: go + - + name: Autobuild + uses: github/codeql-action/autobuild@v1 + - + name: Perform CodeQL Analysis + uses: github/codeql-action/analyze@v1