Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 2 additions & 0 deletions .github/workflows/tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -40,6 +40,8 @@ jobs:

- name: Run tests
run: go test -race -covermode=atomic -coverpkg=./metadata/... -coverprofile=coverage.out ./...
env:
GODEBUG: rsa1024min=0

- name: Send coverage
uses: codecov/codecov-action@54bcd8715eee62d40e33596ef5e8f0f48dbbccab # v4.1.0
2 changes: 1 addition & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@ build-%:
# Test target
.PHONY: test
test:
go test -race -covermode atomic ./...
GODEBUG=rsa1024min=0 go test -race -covermode atomic ./...

#####################
# lint section
Expand Down
2 changes: 1 addition & 1 deletion go.mod
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
module github.com/theupdateframework/go-tuf/v2

go 1.23.0
go 1.24.9

require (
github.com/cenkalti/backoff/v5 v5.0.3
Expand Down
Loading