We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 1b4d09c commit 9bc040bCopy full SHA for 9bc040b
.github/workflows/lsif.yml
.github/workflows/scip.yml
@@ -0,0 +1,16 @@
1
+name: SCIP
2
+'on':
3
+ - push
4
+jobs:
5
+ scip-go:
6
+ runs-on: ubuntu-latest
7
+ container: sourcegraph/scip-go
8
+ steps:
9
+ - uses: actions/checkout@v1
10
+ - name: Get src-cli
11
+ run: curl -L https://sourcegraph.com/.api/src-cli/src_linux_amd64 -o /usr/local/bin/src;
12
+ chmod +x /usr/local/bin/src
13
+ - name: Generate SCIP data
14
+ run: scip-go
15
+ - name: Upload SCIP data
16
+ run: src code-intel upload -github-token=${{ secrets.GITHUB_TOKEN }}
0 commit comments