Update mill-scalalib to 0.11.2 #186
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 | |
on: | |
push: | |
branches: | |
- main | |
pull_request: | |
jobs: | |
scip: | |
runs-on: ubuntu-latest | |
name: "Upload SCIP" | |
steps: | |
- uses: actions/checkout@v3 | |
- uses: coursier/setup-action@v1 | |
with: | |
jvm: 'temurin:11' | |
apps: scip-java | |
- name: Generate SCIP File | |
run: scip-java index | |
- name: Install src | |
run: yarn global add @sourcegraph/src | |
- name: Upload SCIP file | |
run: src code-intel upload -github-token $GITHUB_TOKEN | |
env: | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} |