chore: use scip-go instead of lsif-go for precise indexing in CI #1
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Sourcegraph code intelligence | |
on: | |
- push | |
jobs: | |
scip-go: | |
runs-on: ubuntu-latest | |
container: sourcegraph/scip-go:latest | |
steps: | |
- uses: actions/checkout@v1 | |
- name: Generate SCIP data | |
run: scip-go | |
- name: Upload SCIP data | |
# this will upload to Sourcegraph.com, you may need to substitute a different command. | |
# by default, we ignore failures to avoid disrupting CI pipelines with non-critical errors. | |
run: src code-intel upload -github-token=${{ secrets.GITHUB_TOKEN }} -ignore-upload-failure |