fix: download modules

drew created

Change summary

.github/workflows/ci.yml | 8 ++++----
1 file changed, 4 insertions(+), 4 deletions(-)

Detailed changes

.github/workflows/ci.yml 🔗

@@ -2,9 +2,9 @@ name: Go CI
 
 on:
   push:
-    branches: [master]
+    branches: [main]
   pull_request:
-    branches: [master]
+    branches: [main]
 
 jobs:
   build:
@@ -17,8 +17,8 @@ jobs:
         with:
           go-version: "1.24"
 
-      - name: Download dependencies
-        run: go mod download
+      - name: Tidy modules
+        run: go mod tidy
 
       - name: Build
         run: go build -v ./...