From b7b308dd0f272893445b7f400e8aed31ebb4ea4c Mon Sep 17 00:00:00 2001 From: Nick Snyder Date: Sat, 12 Oct 2024 21:17:58 -0700 Subject: [PATCH] scip --- .github/workflows/scip-go.yml | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/.github/workflows/scip-go.yml b/.github/workflows/scip-go.yml index cec8d34..0ad64eb 100644 --- a/.github/workflows/scip-go.yml +++ b/.github/workflows/scip-go.yml @@ -5,9 +5,14 @@ on: jobs: scip-go: runs-on: ubuntu-latest - container: sourcegraph/scip-go:latest steps: - uses: actions/checkout@v4 + - name: Install scip-go + run: go install github.com/sourcegraph/scip-go/cmd/scip-go@latest + - name: Install src + run: | + curl -L https://sourcegraph.com/.api/src-cli/src_linux_amd64 -o /usr/local/bin/src + chmod +x /usr/local/bin/src - name: Generate SCIP data run: scip-go - name: Upload SCIP data to Sourcegraph.com