Update snctl to v0.20.0-rc.2 #155
Workflow file for this run
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: | |
pull_request: | |
types: [opened, synchronize] | |
jobs: | |
install: | |
runs-on: ${{ matrix.os }} | |
strategy: | |
fail-fast: false | |
matrix: | |
os: | |
- macos-latest | |
- ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Configure Git | |
uses: Homebrew/actions/git-user-config@master | |
- name: Set up Homebrew | |
uses: Homebrew/actions/setup-homebrew@master | |
with: | |
token: ${{ secrets.GITHUB_TOKEN }} | |
- name: Check the CLI formula | |
run: | | |
brew style snctl | |
- name: Install CLI | |
run: | | |
brew install snctl | |
- name: Run CLI | |
run: | | |
snctl -h |