Skip to content

chore(v1): update prysm & eth.store dependencies #3436

chore(v1): update prysm & eth.store dependencies

chore(v1): update prysm & eth.store dependencies #3436

Workflow file for this run

name: Static Check
on:
push:
branches:
- master
- staging
pull_request:
branches:
- staging
- master
jobs:
ci:
name: "Run CI"
strategy:
fail-fast: false
matrix:
os: ["ubuntu-latest"]
go: ["1.23.x"]
runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@v1
with:
fetch-depth: 1
- uses: WillAbides/setup-go-faster@v1.14.0
with:
go-version: ${{ matrix.go }}
- run: make all
- run: "go test ./..."
- run: "go vet ./..."
- uses: dominikh/staticcheck-action@v1.3.1
with:
version: "2024.1.1"
install-go: false
cache-key: ${{ matrix.go }}