Skip to content

Commit

Permalink
Updated go.mod
Browse files Browse the repository at this point in the history
  • Loading branch information
jahnestacado committed Sep 2, 2022
1 parent af68405 commit 1dfe0c0
Show file tree
Hide file tree
Showing 5 changed files with 9 additions and 19 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/build.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -23,8 +23,8 @@ jobs:

- name: Upload test coverage to Codecov
uses: codecov/codecov-action@v3
if: matrix.go == '1.18'
with:
token: ${{ secrets.CODECOV_TOKEN }}
files: ./coverage.txt
fail_ci_if_error: true
verbose: true
Expand Down
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
coverage.txt
17 changes: 0 additions & 17 deletions .travis.yml

This file was deleted.

2 changes: 1 addition & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ help:

#test: @ Runs unit tests
test:
go test -v -race -cover ./...
go test -race -v -coverprofile=coverage.txt -covermode=atomic

#test: @ Runs performance tests
bench:
Expand Down
6 changes: 6 additions & 0 deletions go.mod
Original file line number Diff line number Diff line change
Expand Up @@ -3,3 +3,9 @@ module github.com/jahnestacado/tlru
go 1.18

require github.com/stretchr/testify v1.5.1

require (
github.com/davecgh/go-spew v1.1.0 // indirect
github.com/pmezard/go-difflib v1.0.0 // indirect
gopkg.in/yaml.v2 v2.2.2 // indirect
)

0 comments on commit 1dfe0c0

Please sign in to comment.