Skip to content

Commit

Permalink
update test CI (x3)
Browse files Browse the repository at this point in the history
  • Loading branch information
zekroTJA committed May 5, 2024
1 parent 10aa4f9 commit 6574756
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/main-ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -23,9 +23,9 @@ jobs:
uses: actions/checkout@v2
- name: Get dependencies
run: |
go get -v -t -d .
go get -v -t -d ./...
- name: Run Tests with Race checks
run: go test -v -timeout 300s -race ./...
run: go test -v -timeout 300s -race .
- name: Run Benchmarks
run: go test -timeout 300s -bench=. -benchmem

Expand All @@ -44,9 +44,9 @@ jobs:
uses: actions/checkout@v2
- name: Get dependencies
run: |
go get -v -t -d .
go get -v -t -d ./...
- name: Run Tests
run: go test -v -timeout 300s -covermode atomic -coverprofile=covprofile ./...
run: go test -v -timeout 300s -covermode atomic -coverprofile=covprofile .
- name: Install goveralls
run: go install github.com/mattn/goveralls@latest
- name: Send coverage
Expand Down

0 comments on commit 6574756

Please sign in to comment.