Skip to content

Commit 29285e8

Browse files
committed
ci: add recursive flag to ginkgo and remove golangci-lint step
Add -r flag to ginkgo test command to run tests recursively, and remove the separate golangci-lint job step from the CI workflow.
1 parent 7316ab5 commit 29285e8

1 file changed

Lines changed: 1 addition & 4 deletions

File tree

.github/workflows/ci.yml

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -27,16 +27,13 @@ jobs:
2727
uses: DeterminateSystems/magic-nix-cache-action@v13
2828

2929
- name: Run Tests
30-
run: nix develop --command go tool ginkgo run -coverprofile=coverage.out -covermode=atomic ./...
30+
run: nix develop --command go tool ginkgo run -r -coverprofile=coverage.out -covermode=atomic ./...
3131

3232
- name: Run octocov
3333
uses: k1LoW/octocov-action@v1
3434
with:
3535
github-token: ${{ secrets.GITHUB_TOKEN }}
3636

37-
- name: Run golangci-lint
38-
run: nix develop --command golangci-lint run
39-
4037
release:
4138
needs: build
4239
if: github.event_name == 'push'

0 commit comments

Comments
 (0)