Skip to content

Commit

Permalink
fix: zunit install in GH workflow (zdharma-continuum#412)
Browse files Browse the repository at this point in the history
Signed-off-by: Vladislav Doster <[email protected]>
  • Loading branch information
vladdoster authored Nov 5, 2022
1 parent 105b38a commit f4787dc
Showing 1 changed file with 4 additions and 5 deletions.
9 changes: 4 additions & 5 deletions .github/workflows/tests.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -59,11 +59,10 @@ jobs:

- name: "install zunit"
id: install-zunit
run: brew install zunit-zsh/zunit/zunit
# run: |
# git clone --depth 1 https://github.com/zdharma-continuum/zunit; cd ./zunit
# zsh -c -l './build.zsh' && sudo chmod u+x ./zunit && sudo cp ./zunit /usr/local/bin
# rm -rf zunit
run: |
mkdir -p "$HOME/.local/bin" && echo "$HOME/.local/bin" >> $GITHUB_PATH
git clone --depth 1 https://github.com/zdharma-continuum/zunit; cd ./zunit
zsh -c -l './build.zsh' && sudo chmod u+x ./zunit && cp ./zunit "$HOME/.local/bin/"
- name: "annexes"
run: zunit run tests/annexes.zunit
Expand Down

0 comments on commit f4787dc

Please sign in to comment.