Skip to content

chore(ci): add GitHub Actions ci + release workflows; drop broken Taskfile release #1

chore(ci): add GitHub Actions ci + release workflows; drop broken Taskfile release

chore(ci): add GitHub Actions ci + release workflows; drop broken Taskfile release #1

Workflow file for this run

name: CI
on:
push:
branches: [main]
pull_request:
branches: [main]
permissions:
contents: read
jobs:
test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v5
- uses: actions/setup-go@v6
with:
go-version-file: go.mod
- name: Vet
run: go vet ./...
- name: Test
run: go test -race ./...