Skip to content

Add command tests and /commit quality check command #2

Add command tests and /commit quality check command

Add command tests and /commit quality check command #2

Workflow file for this run

name: Test
on:
push:
branches: [main]
pull_request:
branches: [main]
jobs:
test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-go@v5
with:
go-version: '1.23'
cache: true
- name: Verify dependencies
run: go mod verify
- name: Build
run: go build ./...
- name: Vet
run: go vet ./...
- name: Test
run: go test -v -race ./...