Skip to content

Add a Dependabot config #5

Add a Dependabot config

Add a Dependabot config #5

Workflow file for this run

name: Go
on: [push]
jobs:
go-test-vet:
strategy:
matrix:
go-version: ['1.22', '1.21']
runs-on: ubuntu-latest
name: go test, vet
steps:
- uses: actions/checkout@v4
- uses: actions/setup-go@v5
with:
go-version: ${{ matrix.go-version }}
check-latest: true
- run: go test -v -race ./...
- run: go vet ./...