Skip to content

Generalize block selector #67

Generalize block selector

Generalize block selector #67

Workflow file for this run

name: Build, lint, test
on:
push:
branches: [ master ]
pull_request:
branches: [ master ]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Set up Go
uses: actions/setup-go@v5
with:
go-version: '1.23'
- name: Build
run: make
- name: Lint
run: |
go install github.com/golangci/golangci-lint/cmd/golangci-lint@v1.61.0
make lint
- name: Test
run: go test -v ./...