Skip to content

Update all non-major dependencies #73

Update all non-major dependencies

Update all non-major dependencies #73

Workflow file for this run

name: Build & Test
on:
pull_request:
paths-ignore:
- "docs/**"
- "*.md"
- ".gitignore"
- "CODEOWNERS"
- "LICENSE"
- "Makefile"
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
with:
fetch-depth: 0
- uses: actions/setup-go@v5
with:
go-version: ">=1.21.0"
- name: Install dev binaries
run: make install
- name: Build
run: make build
- name: Test
run: make test