update deps #30
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: Go Test CI | |
on: | |
push: | |
pull_request: | |
types: [opened, reopened] | |
jobs: | |
build: | |
name: Run Go Tests | |
runs-on: ubuntu-latest | |
steps: | |
- name: Check out code | |
uses: actions/checkout@v2 | |
with: | |
lfs: true | |
- name: Install Unzip | |
run: sudo apt-get install unzip | |
- name: Unzip the File 1 | |
run: unzip data/goerli_slot_6397852.json.zip -d ./data | |
- name: Unzip the File 2 | |
run: unzip data/goerli_slot_6397952.json.zip -d ./data | |
- name: Unzip the File 3 | |
run: unzip data/goerli_slot_6399998.json.zip -d ./data | |
- name: Set up Go 1.x | |
uses: actions/setup-go@v2 | |
with: | |
go-version: ^1.17 | |
- name: Run tests | |
run: go test -v ./... |