mirror of
https://github.com/boolean-maybe/tiki
synced 2026-04-21 13:37:20 +00:00
fix workflow
This commit is contained in:
parent
e37d451dbd
commit
3d539bca19
1 changed files with 7 additions and 2 deletions
9
.github/workflows/go.yml
vendored
9
.github/workflows/go.yml
vendored
|
|
@ -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'
|
||||
|
|
|
|||
Loading…
Reference in a new issue