diff options
author | ᴜɴᴋɴᴡᴏɴ <u@gogs.io> | 2020-03-08 00:08:05 +0800 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-03-08 00:08:05 +0800 |
commit | c65b5b9f84dee21dc362311b299694e8e00f6ac6 (patch) | |
tree | 708a4b91a99d90ab179b7dee87f47bd8f4137723 /.github | |
parent | bf373f9da1b74f2b6411bf5fcc097d050dc2df1c (diff) |
lsif: enable upload
Diffstat (limited to '.github')
-rw-r--r-- | .github/workflows/lsif.yml | 17 |
1 files changed, 17 insertions, 0 deletions
diff --git a/.github/workflows/lsif.yml b/.github/workflows/lsif.yml new file mode 100644 index 00000000..dd4d948c --- /dev/null +++ b/.github/workflows/lsif.yml @@ -0,0 +1,17 @@ +name: LSIF +on: [push] +jobs: + build: + runs-on: ubuntu-latest + steps: + - uses: actions/checkout@v1 + - name: Generate LSIF data + uses: sourcegraph/lsif-go-action@master + with: + verbose: 'true' + - name: Upload LSIF data + uses: sourcegraph/lsif-upload-action@master + continue-on-error: true + with: + endpoint: https://sourcegraph.com + github_token: ${{ secrets.GITHUB_TOKEN }} |