File tree Expand file tree Collapse file tree 3 files changed +16
-19
lines changed
Expand file tree Collapse file tree 3 files changed +16
-19
lines changed Original file line number Diff line number Diff line change 99 - main
1010 - master
1111jobs :
12- test :
13- runs-on : ubuntu-latest
14- steps :
15- - uses : actions/checkout@v4
16- - uses : actions/setup-go@v5
17- with :
18- go-version : stable
19- - name : Install dependencies
20- run : go mod tidy
21- - name : Run tests with coverage
22- run : go test ./... -coverprofile=./cover.out -covermode=atomic -coverpkg=./...
23- - name : Check coverage
24- uses : vladopajic/go-test-coverage@v2
25- with :
26- config : ./.testcoverage.yml
12+ test :
13+ runs-on : ubuntu-latest
14+ steps :
15+ - uses : actions/checkout@v4
16+ - uses : actions/setup-go@v5
17+ with :
18+ go-version : stable
19+ - name : Install dependencies
20+ run : go mod tidy
21+ - name : Run tests with coverage
22+ run : go test ./... -coverprofile=./cover.out -covermode=atomic -coverpkg=./...
23+ - name : Check coverage
24+ uses : vladopajic/go-test-coverage@v2
25+ with :
26+ config : ./.testcoverage.yml
Original file line number Diff line number Diff line change 11module github.com/redis-developer/go-redis-entraid
22
33go 1.18
4-
5-
Original file line number Diff line number Diff line change 1- package redis- entraid
1+ package redis
22
33// Version is the current release version.
44func Version () string {
55 return "0.0.1"
66}
7-
You can’t perform that action at this time.
0 commit comments