Add query consensus-state CLI (#151) #70
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: MacOS Build | |
on: | |
push: | |
tags: | |
- v[0-9]+.* | |
branches: | |
- "release/*" | |
- main | |
jobs: | |
test-contracts: | |
name: Build MacOS Nix dependencies | |
runs-on: macos-14 | |
timeout-minutes: 60 | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: cachix/install-nix-action@V27 | |
with: | |
extra_nix_config: | | |
experimental-features = nix-command flakes | |
- uses: cachix/cachix-action@v15 | |
with: | |
name: ibc-starknet | |
extraPullNames: hermes-sdk,cosmos-nix | |
authToken: ${{ secrets.CACHIX_AUTH_TOKEN }} | |
- name: Run Nix build | |
run: | | |
sudo rm -rf /opt/homebrew | |
nix develop -c true |