diff options
author | Ayke van Laethem <[email protected]> | 2023-02-19 22:41:55 +0100 |
---|---|---|
committer | Ron Evans <[email protected]> | 2023-02-20 00:23:52 +0100 |
commit | ec27d9fb48acbd82496a52b977ac1011e81628b2 (patch) | |
tree | f7ca443e39adce79a11b1a277cf326e72f0115da /.github/workflows/windows.yml | |
parent | cce9c6d5a12ad7ba91310e501cb56b78d4eb6df0 (diff) | |
download | tinygo-ec27d9fb48acbd82496a52b977ac1011e81628b2.tar.gz tinygo-ec27d9fb48acbd82496a52b977ac1011e81628b2.zip |
ci: don't pass -v to `go test`
It can be difficult to find what went wrong in a test. Omitting -v
should make it easier to see the failing tests and the output for them
(note that output is still printed for tests that fail).
Diffstat (limited to '.github/workflows/windows.yml')
-rw-r--r-- | .github/workflows/windows.yml | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/.github/workflows/windows.yml b/.github/workflows/windows.yml index 4286892cd..95825358a 100644 --- a/.github/workflows/windows.yml +++ b/.github/workflows/windows.yml @@ -99,7 +99,7 @@ jobs: scoop install wasmtime - name: Test TinyGo shell: bash - run: make test GOTESTFLAGS="-v -short" + run: make test GOTESTFLAGS="-short" - name: Build TinyGo release tarball shell: bash run: make build/release -j4 |