Skip to content

ci: add GitHub workflows and dependabot config #1

ci: add GitHub workflows and dependabot config

ci: add GitHub workflows and dependabot config #1

Workflow file for this run

name: test
on:
pull_request:
push:
branches:
- "main"
jobs:
build_and_run_tests:
runs-on: "${{ matrix.os }}"
strategy:
matrix:
go: ["1.25"]
os: ["ubuntu-24.04"]
steps:
- uses: actions/checkout@v6
- uses: actions/setup-go@v6
with:
go-version: "${{ matrix.go }}"
cache: true
- run: go build -v ./...
- run: go test -race -v ./...