.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 ./...