Skip to content

Commit

Permalink
Removing codeql from release checks
Browse files Browse the repository at this point in the history
  • Loading branch information
benjivesterby committed Mar 16, 2022
1 parent a1c057f commit bb2b9c4
Showing 1 changed file with 1 addition and 19 deletions.
20 changes: 1 addition & 19 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -26,26 +26,8 @@ jobs:
run: go build ./...
- name: Test
run: go test -race -failfast ./...
codeql:
name: "CodeQL Check"
needs: [build]
strategy:
matrix:
go-version: [1.18.x]
platform: [ubuntu-latest, macos-latest, windows-latest]
fail-fast: true
runs-on: ${{ matrix.platform }}
steps:
- name: Checkout code
uses: actions/checkout@v3
- name: Initialize CodeQL
uses: github/codeql-action/init@v1
with:
languages: go
- name: Perform CodeQL Analysis
uses: github/codeql-action/analyze@v1
release:
needs: [build, codeql]
needs: [build]
name: "Tagged Release"
runs-on: "ubuntu-latest"
steps:
Expand Down

0 comments on commit bb2b9c4

Please sign in to comment.