diff options
author | Dan Kegel <[email protected]> | 2022-02-18 12:00:37 -0800 |
---|---|---|
committer | Ron Evans <[email protected]> | 2022-02-21 05:18:27 +0100 |
commit | f962e2fd150ff2a4b93219b885a368a81051349b (patch) | |
tree | 0520ab01f700928bd9391f34109f57dd580f4ec3 /.github/workflows/build-macos.yml | |
parent | 5746154cc081b0bbf46097d8bac6eecf3a68ffec (diff) | |
download | tinygo-f962e2fd150ff2a4b93219b885a368a81051349b.tar.gz tinygo-f962e2fd150ff2a4b93219b885a368a81051349b.zip |
github: also run 'make tinygo-test' on mac
Diffstat (limited to '.github/workflows/build-macos.yml')
-rw-r--r-- | .github/workflows/build-macos.yml | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/.github/workflows/build-macos.yml b/.github/workflows/build-macos.yml index 8f01f7d4a..59dc7b855 100644 --- a/.github/workflows/build-macos.yml +++ b/.github/workflows/build-macos.yml @@ -76,6 +76,8 @@ jobs: run: make test GOTESTFLAGS="-v -short" - name: Build TinyGo release tarball run: make release -j3 + - name: Test stdlib packages + run: make tinygo-test - name: Make release artifact shell: bash run: cp -p build/release.tar.gz build/tinygo.darwin-amd64.tar.gz |