We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 18969c0 commit 3ff2e5cCopy full SHA for 3ff2e5c
README.md
@@ -51,10 +51,13 @@ jobs:
51
steps:
52
- uses: actions/setup-go@v2
53
- uses: actions/checkout@v2
54
+ # Add github.com/minoritea/go-splittestgen to go.mod
55
+ # and install modules before tests.
56
- name: Run tests parallelly
57
run: |
58
go test ./... -list . | \
- go run github.com/minoritea/go-splittestgen/cmd/go-splittestgen -total ${{ matrix.parallelism }} -index ${{ matrix.index }} | \
59
+ go run github.com/minoritea/go-splittestgen/cmd/go-splittestgen | \
60
+ -total ${{ matrix.parallelism }} -index ${{ matrix.index }} | \
61
sed -e 's/$/ -v -count 1/g' | sh
62
```
63
0 commit comments