File tree Expand file tree Collapse file tree 2 files changed +23
-15
lines changed
Expand file tree Collapse file tree 2 files changed +23
-15
lines changed Load Diff This file was deleted.
Original file line number Diff line number Diff line change 1+ name : Sourcegraph code intelligence
2+ on :
3+ - push
4+
5+ jobs :
6+ scip-go :
7+ runs-on : ubuntu-latest
8+ steps :
9+ - uses : actions/checkout@v4
10+ - name : Install scip-go
11+ run : |
12+ curl -L https://github.com/sourcegraph/scip-go/releases/download/v0.1.21/scip-go_0.1.21_linux_amd64.tar.gz -o scip-go.tar.gz --no-progress-meter
13+ tar -xf scip-go.tar.gz
14+ chmod +x ./scip-go
15+ - name : Install src
16+ run : |
17+ curl -L https://sourcegraph.com/.api/src-cli/src_linux_amd64 -o src --no-progress-meter
18+ chmod +x ./src
19+ - name : Generate SCIP data
20+ run : ./scip-go
21+ - name : Upload SCIP data to Sourcegraph.com
22+ run : SRC_ACCESS_TOKEN=${{ secrets.SRC_ACCESS_TOKEN }} ./src code-intel upload -github-token=${{ secrets.GITHUB_TOKEN }} -no-progress
23+
You can’t perform that action at this time.
0 commit comments