xiond v7.0.0, v8.0.0, v8.0.1, v9.0.0 #2
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: brew install | |
on: | |
pull_request: | |
branches: | |
- main | |
workflow_dispatch: | |
jobs: | |
install: | |
runs-on: macos-latest | |
strategy: | |
matrix: | |
version: | |
- 'null' | |
- '0.1.0' | |
- '0.3.2' | |
- '0.3.3' | |
- '0.3.4' | |
- '0.3.7' | |
- '0.3.8' | |
- '0.3.9' | |
- '1.0.0' | |
- '2.0.0' | |
- '3.0.0' | |
- '3.1.0' | |
- '4.0.0' | |
- '5.0.0' | |
- '6.0.0' | |
- '7.0.0' | |
steps: | |
- name: Checkout repository | |
uses: actions/checkout@v4 | |
- name: Set up Homebrew | |
run: | | |
/bin/bash -c "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/HEAD/install.sh)" | |
- name: Install Xiond | |
run: | | |
brew tap burnt-labs/xion | |
if [ "${{ matrix.version }}" == "null" ]; then | |
brew install xiond | |
else | |
brew install xiond@${{ matrix.version }} | |
fi |