Skip to content

Commit 4ac79f4

Browse files
committed
Use actions/setup-go in CI.
The `lsif-semanticdb` binary was not available on PATH.
1 parent 9b79536 commit 4ac79f4

File tree

2 files changed

+7
-0
lines changed

2 files changed

+7
-0
lines changed

.github/workflows/ci.yml

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -12,6 +12,9 @@ jobs:
1212
- uses: olafurpg/setup-scala@v10
1313
with:
1414
java-version: [email protected]
15+
- uses: actions/setup-go@v2
16+
with:
17+
go-version: '^1.13.1'
1518
- run: go get github.com/sourcegraph/lsif-semanticdb/cmd/lsif-semanticdb
1619
- run: sbt test
1720
check:

.github/workflows/native.yml

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -26,6 +26,10 @@ jobs:
2626
steps:
2727
- uses: actions/checkout@v2
2828
- uses: olafurpg/setup-scala@v10
29+
- uses: actions/setup-go@v2
30+
with:
31+
go-version: '^1.13.1'
32+
- run: go get github.com/sourcegraph/lsif-semanticdb/cmd/lsif-semanticdb
2933
- run: git fetch --tags || true
3034
- name: sbt nativeImage
3135
shell: bash

0 commit comments

Comments
 (0)