Skip to content

Commit 9dbd43e

Browse files
committedJun 8, 2023
add precomp download to github runner step
1 parent 342ce2e commit 9dbd43e

File tree

1 file changed

+4
-2
lines changed

1 file changed

+4
-2
lines changed
 

‎.github/workflows/go.yml

+4-2
Original file line numberDiff line numberDiff line change
@@ -35,12 +35,14 @@ jobs:
3535
run: go vet
3636

3737
test:
38-
runs-on: ubuntu-latest
38+
runs-on: self-hosted
3939
steps:
40-
- uses: actions/checkout@v2
40+
- uses: actions/checkout@v3
4141
- name: Set up Go
4242
uses: actions/setup-go@v2
4343
with:
4444
go-version: 1.18
45+
- name: Download precomp file
46+
run: wget https://github.com/gballet/go-verkle/releases/download/banderwagonv3/precomp && ls -al
4547
- name: Test
4648
run: go test -v -race ./...

0 commit comments

Comments
 (0)