6
0
mirror of https://github.com/grdl/git-get.git synced 2026-02-04 20:54:41 +00:00

Remove redundant steps from CI workflow

- go mod verify is not needed when go.sum is checked in. go build and go
test will automatically verify checksums
- go mod download is handled by the setup-go action already
This commit is contained in:
Grzegorz Dlugoszewski
2025-08-25 19:24:31 +02:00
parent df6c239099
commit 152e91444b
2 changed files with 1 additions and 7 deletions

View File

@@ -31,12 +31,6 @@ jobs:
with:
go-version: ${{ matrix.go-version }}
cache: true
- name: Download dependencies
run: go mod download
- name: Verify dependencies
run: go mod verify
- name: Build binary
run: go build -v -o bin/git-get ./cmd/