Skip to content

build(deps): bump actions/setup-go from 5 to 6 #3

build(deps): bump actions/setup-go from 5 to 6

build(deps): bump actions/setup-go from 5 to 6 #3

name: Go bindings
on:
push:
branches: [main, develop]
pull_request:
branches: [main]
jobs:
go:
runs-on: ubuntu-latest
defaults:
run:
working-directory: bindings/go
steps:
- uses: actions/checkout@v4
- uses: actions/setup-go@v6
with:
go-version: "1.22"
- name: Vet
run: go vet ./...
- name: Test (no CGO)
env:
CGO_ENABLED: "0"
run: go test ./... -short