From 75972289d809124361e118fe36f3e8810d71c2ad Mon Sep 17 00:00:00 2001 From: Guillaume Ballet <3272758+gballet@users.noreply.github.com> Date: Thu, 8 Jun 2023 12:27:33 +0200 Subject: [PATCH] add precomp download to github runner step --- .github/workflows/go.yml | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/.github/workflows/go.yml b/.github/workflows/go.yml index 098349cf..7e84c27d 100644 --- a/.github/workflows/go.yml +++ b/.github/workflows/go.yml @@ -37,10 +37,12 @@ jobs: test: runs-on: ubuntu-latest steps: - - uses: actions/checkout@v2 + - uses: actions/checkout@v3 - name: Set up Go uses: actions/setup-go@v2 with: go-version: 1.18 + - name: Download precomp file + run: wget https://github.com/gballet/go-verkle/releases/download/banderwagonv3/precomp && ls -al - name: Test run: go test -v -race ./...