From dde6c6dc9b6b13914b19ee137d2f3d349a704b6c Mon Sep 17 00:00:00 2001 From: Jason Hall Date: Fri, 1 Oct 2021 14:25:35 -0400 Subject: [PATCH] Re-enable codeql analysis (#457) --- .github/workflows/analyze.yaml | 25 +++++++++++++++++++++++++ 1 file changed, 25 insertions(+) create mode 100644 .github/workflows/analyze.yaml diff --git a/.github/workflows/analyze.yaml b/.github/workflows/analyze.yaml new file mode 100644 index 0000000000..4a82240dbb --- /dev/null +++ b/.github/workflows/analyze.yaml @@ -0,0 +1,25 @@ +name: Analyze + +on: + workflow_dispatch: + push: + branches: ['main'] + pull_request: + branches: ['main'] + +jobs: + analyze: + name: Analyze + runs-on: ubuntu-latest + steps: + - uses: actions/checkout@v2 + with: + # We must fetch at least the immediate parents so that if this is + # a pull request then we can checkout the head. + fetch-depth: 2 + + - uses: github/codeql-action/init@v1 + with: + languages: go + - uses: github/codeql-action/autobuild@v1 + - uses: github/codeql-action/analyze@v1