fix workflow

This commit is contained in:
booleanmaybe 2026-03-21 23:34:18 -04:00
parent e37d451dbd
commit 3d539bca19

View file

@ -31,9 +31,14 @@ jobs:
- name: Verify dependencies
run: go mod verify
- name: Run tests
- name: Run tests with race detection
shell: bash
run: go test -v -race -coverprofile=coverage.out -covermode=atomic ./...
run: go test -v -race ./...
- name: Run tests with coverage
if: matrix.os == 'ubuntu-latest'
shell: bash
run: go test -coverprofile=coverage.out -covermode=atomic ./...
- name: Upload coverage to Codecov
if: matrix.os == 'ubuntu-latest' && matrix.go-version == '1.24.x'