File tree Expand file tree Collapse file tree 4 files changed +26
-16
lines changed Expand file tree Collapse file tree 4 files changed +26
-16
lines changed Original file line number Diff line number Diff line change 2626 - name : Bump Homebrew formula
27272828 if : (!github.event.release.prerelease)
29+ env :
30+ COMMITTER_TOKEN : ${{ secrets.COMMITTER_TOKEN }}
2931 with :
3032 formula-name : archive-fusionvm
3133 homebrew-tap : nreilingh/homebrew-nreilingh
3234 download-url : ${{ steps.upload_release_asset.outputs.browser_download_url }}
33- env :
34- COMMITTER_TOKEN : ${{ secrets.COMMITTER_TOKEN }}
Original file line number Diff line number Diff line change 1+ name : Unit Testing
2+
3+ on : [push, pull_request]
4+
5+ jobs :
6+ test :
7+
8+ runs-on : macos-latest
9+
10+ steps :
11+ - uses : actions/checkout@v2
12+ with :
13+ persist-credentials : false # Cleanup doesn't run if a test fails.
14+ - run : brew install zunit-zsh/zunit/zunit
15+ - name : Run ZUnit
16+ run : zunit -t --output-html --output-text
17+ - name : Store test results as artifact
18+ 19+ if : always() # Prevent suppression in the event of a test failure.
20+ with :
21+ name : ZUnit Results
22+ path : tests/_output
Original file line number Diff line number Diff line change 1+ /tests /_output /*
2+ ! /tests /_output /.gitkeep
Load Diff This file was deleted.
You can’t perform that action at this time.
0 commit comments