Hardhat Chain Functional test #28
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: Hardhat Chain Functional test | |
on: | |
schedule: | |
- cron: "30 2 * * 1" | |
workflow_dispatch: | |
jobs: | |
functional_test_hardhat: | |
name: Hardhat Chain 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 hardhat chain command tests | |
run: | | |
cd test && make run-hardhat |