Skip to content

feat: ZSET scheduling (run_at submit, retry backoff, reconciler wake) #6

feat: ZSET scheduling (run_at submit, retry backoff, reconciler wake)

feat: ZSET scheduling (run_at submit, retry backoff, reconciler wake) #6

Workflow file for this run

name: CI
on:
push:
branches: [main, master]
pull_request:
jobs:
go:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-go@v5
with:
go-version-file: go.mod
cache: true
- name: Module graph
run: go mod download && go mod verify
- name: Vet
run: go vet ./...
- name: Test
run: go test ./... -count=1
- name: Build
run: go build -o /dev/null ./cmd/...