aboutsummaryrefslogtreecommitdiffhomepage
path: root/.github/workflows/build-macos.yml
diff options
context:
space:
mode:
authorAyke van Laethem <[email protected]>2023-02-19 22:41:55 +0100
committerRon Evans <[email protected]>2023-02-20 00:23:52 +0100
commitec27d9fb48acbd82496a52b977ac1011e81628b2 (patch)
treef7ca443e39adce79a11b1a277cf326e72f0115da /.github/workflows/build-macos.yml
parentcce9c6d5a12ad7ba91310e501cb56b78d4eb6df0 (diff)
downloadtinygo-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/build-macos.yml')
-rw-r--r--.github/workflows/build-macos.yml2
1 files changed, 1 insertions, 1 deletions
diff --git a/.github/workflows/build-macos.yml b/.github/workflows/build-macos.yml
index fb7e3d675..46b77a89a 100644
--- a/.github/workflows/build-macos.yml
+++ b/.github/workflows/build-macos.yml
@@ -89,7 +89,7 @@ jobs:
run: make wasi-libc
- name: Test TinyGo
shell: bash
- run: make test GOTESTFLAGS="-v -short"
+ run: make test GOTESTFLAGS="-short"
- name: Build TinyGo release tarball
run: make release -j3
- name: Test stdlib packages