Skip to content

Merge pull request #12 from Layr-Labs/fixed-naming #17

Merge pull request #12 from Layr-Labs/fixed-naming

Merge pull request #12 from Layr-Labs/fixed-naming #17

Workflow file for this run

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 ./...