All Parachain Functional test #3
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 Parachain Functional test | |
on: | |
workflow_dispatch: | |
jobs: | |
functional_test_all_parachain: | |
name: All Parachain 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 parachain command tests | |
run: | | |
cd test && make run-parachain-all |