Skip to content

Commit 2ce9ba1

Browse files
committed
Update submodules and drop no-op test skip
Sync admin, drivers and homepage to their latest commits (lint and vet steps added to CI, homepage lint errors fixed). Remove the -skip=TestMain flag from the Go workflow: TestMain is not a test function, so the flag never matched anything.
1 parent 46609f5 commit 2ce9ba1

4 files changed

Lines changed: 5 additions & 5 deletions

File tree

.github/workflows/go.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -28,10 +28,10 @@ jobs:
2828
run: go vet ./...
2929

3030
- name: Test
31-
run: go test -v -skip=TestMain ./...
31+
run: go test -v ./...
3232

3333
- name: Race detector
34-
run: go test -race -skip=TestMain ./...
34+
run: go test -race ./...
3535

3636
- name: Golangci-lint
3737
uses: golangci/golangci-lint-action@v7

admin

drivers

0 commit comments

Comments
 (0)