Skip to content

refactor: replace uuidv7 dependency with standard-library UUIDv7 queu… #15

refactor: replace uuidv7 dependency with standard-library UUIDv7 queu…

refactor: replace uuidv7 dependency with standard-library UUIDv7 queu… #15

Workflow file for this run

name: Test
on: [push, pull_request]
permissions:
contents: read
jobs:
test:
runs-on: ubuntu-latest
strategy:
matrix:
go: ['1.27.x', 'stable']
steps:
- uses: actions/checkout@v4
- uses: actions/setup-go@v7
with:
go-version: ${{ matrix.go }}
- run: test -z "$(gofmt -l .)"
- run: go vet ./...
- run: go test -race -count=1 -timeout=5m ./...