diff --git a/.github/workflows/go.yml b/.github/workflows/go.yml
index 0b0881f..18248b1 100644
--- a/.github/workflows/go.yml
+++ b/.github/workflows/go.yml
@@ -28,12 +28,9 @@ jobs:
 
     - name: Build
       run: go build -v .
-
-    - name: Test
-      run: go test -v .
     
-    - name: Run coverage
-      run: go test -race -coverprofile=coverage.txt -covermode=atomic
+    - name: Test coverage
+      run: go test -race -coverprofile=coverage.txt -covermode=atomic -v ./...
       
     - name: Upload coverage to Codecov
       run: bash <(curl -s https://codecov.io/bash)