Skip to content

Allow running build workflow on external PRs #156

Allow running build workflow on external PRs

Allow running build workflow on external PRs #156

Workflow file for this run

name: build
on:
push:
pull_request:
types: [opened, synchronize, reopened, ready_for_review]
jobs:
build:
name: build
runs-on: ubuntu-latest
steps:
- name: git clone
uses: actions/checkout@v4
- name: set up go
uses: actions/setup-go@v5
with:
go-version: 1.24.x
- name: go build
run: go build -v
- name: go test
run: go test -v -cover -coverpkg=./... -race ./...
- name: golangci-lint
uses: golangci/golangci-lint-action@v6
with:
version: v1.64.5