Add a CI job to make sure relaychain produces blocks (#16)

This commit is contained in:
Przemek Rzad
2024-08-09 18:06:31 +02:00
committed by GitHub
parent 1b627cdddb
commit d7a09baa65
4 changed files with 75 additions and 46 deletions
@@ -0,0 +1,12 @@
name: Install macOS dependencies
description: Installs dependencies required to compile the template on macOS
runs:
using: "composite"
steps:
- run: |
curl https://sh.rustup.rs -sSf -y | sh
brew install protobuf
rustup target add wasm32-unknown-unknown --toolchain stable-aarch64-apple-darwin
rustup component add rust-src --toolchain stable-aarch64-apple-darwin
shell: sh