Polkadot Relay and Parachain Functional test #23
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: Polkadot Relay and Parachain Functional test | |
on: | |
schedule: | |
- cron: "30 0 * * 5" | |
workflow_dispatch: | |
jobs: | |
functional_test_polkadot_relay_parachain: | |
name: Polkadot Relay and 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 Relay and Parachain command tests | |
run: | | |
cd test && make run-relay-parachain-polkadot |