Automatic bump version to v0.3.9-alpha. #21
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: ci | |
on: | |
push: | |
branches: [main] | |
paths-ignore: ['**.md'] | |
pull_request: | |
branches: [main] | |
paths-ignore: ['**.md'] | |
jobs: | |
ci: | |
runs-on: macos-12 | |
steps: | |
- name: Tap and install | |
run: | | |
brew tap liquidaty/zsv | |
brew install zsv | |
- name: Check installed version | |
run: | | |
zsv version | |
- name: Uninstall and untap | |
run: | | |
brew uninstall zsv | |
brew untap liquidaty/zsv | |
zsv version || true |