Merge pull request #71 from sourcegraph/nsc/lsifgo-to-scipgo #4
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: SCIP | |
'on': | |
- push | |
jobs: | |
scip-go: | |
runs-on: ubuntu-latest | |
container: sourcegraph/scip-go | |
steps: | |
- uses: actions/checkout@v1 | |
- name: Get src-cli | |
run: curl -L https://sourcegraph.com/.api/src-cli/src_linux_amd64 -o /usr/local/bin/src; | |
chmod +x /usr/local/bin/src | |
- name: Set directory to safe for git | |
run: git config --global --add safe.directory $GITHUB_WORKSPACE | |
- name: Generate SCIP data | |
run: scip-go | |
- name: Upload SCIP data | |
run: src code-intel upload -github-token=${{ secrets.GITHUB_TOKEN }} |