Skip to content

Update prysm blob flag #428

Update prysm blob flag

Update prysm blob flag #428

Workflow file for this run

# This workflow will build a golang project
# For more information see: https://docs.github.com/en/actions/automating-builds-and-tests/building-and-testing-go
name: Go
on:
push:
branches: ["main"]
pull_request:
branches: ["main"]
jobs:
lint:
name: Lint
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Set up Go 1.25
uses: actions/setup-go@v6
with:
go-version: "1.25.1"
cache: false
- name: Golangci-lint
uses: golangci/golangci-lint-action@v8
with:
version: latest
args: --timeout 3m --verbose --config=.golangci.yml
only-new-issues: true
build:
name: Build
runs-on: ubuntu-latest
steps:
- name: Set up Go 1.x
uses: actions/setup-go@v5
with:
go-version: "1.25.1"
cache: false
- name: Check out code into the Go module directory
uses: actions/checkout@v4
- name: Get dependencies
run: |
go get -v -t -d ./...
- name: Test
run: go test -v ./...