All Relaychain Functional test #1
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: All Relaychain Functional test | |
on: | |
workflow_dispatch: | |
jobs: | |
functional_test_all_relaychain: | |
name: All Relaychain Functional Testing | |
runs-on: "ubuntu-latest" | |
steps: | |
- name: Checkout code | |
uses: actions/checkout@v2 | |
- name: Set up Go | |
uses: actions/setup-go@v4 | |
with: | |
go-version: 1.21 | |
- name: Installing Kurtosis CLI and starting the kurtosis engine | |
run: | | |
echo "deb [trusted=yes] https://apt.fury.io/kurtosis-tech/ /" | sudo tee /etc/apt/sources.list.d/kurtosis.list | |
sudo apt update | |
sudo apt install kurtosis-cli | |
kurtosis engine start | |
- name: Running polkadot and kusama Relaychain command tests | |
run: | | |
cd test && make run-relaychain-all |