From 35982cee55c69a52e1dcfeab88336d077cd28da5 Mon Sep 17 00:00:00 2001 From: drew Date: Mon, 28 Jul 2025 19:11:10 +0400 Subject: [PATCH] fix: download modules --- .github/workflows/ci.yml | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 354729fe4812b1d1c29c81d0b5bff3c985f1aafe..92681767a03a4768da2c36d965c0fb0385cff7ea 100644 --- a/.github/workflows/ci.yml +++ b/.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 ./...