Skip to content

build(deps): bump actions/checkout from 4 to 7 #22

build(deps): bump actions/checkout from 4 to 7

build(deps): bump actions/checkout from 4 to 7 #22

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@v7
- uses: actions/setup-go@v5
with:
go-version: "1.22"
- name: Vet
run: go vet ./...
- name: Test (no CGO)
env:
CGO_ENABLED: "0"
run: go test ./... -short