feat(taiko-client): ontake preconfs + versioning of contracts #46
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: "Taiko Client Hive Tests" | |
on: | |
push: | |
branches: [main] | |
paths: | |
- "packages/taiko-client/**" | |
pull_request: | |
paths: | |
- "packages/taiko-client/**" | |
- "go.mod" | |
- "go.sum" | |
jobs: | |
hive_tests: | |
name: hive tests | |
runs-on: ubuntu-latest | |
steps: | |
- name: Cancel Previous Runs | |
uses: styfle/[email protected] | |
with: | |
access_token: ${{ github.token }} | |
- uses: actions/checkout@v4 | |
- name: Set up Go | |
uses: actions/setup-go@v5 | |
with: | |
go-version: 1.21 | |
cache: true | |
- name: Clone taikoxyz/hive | |
run: git clone https://github.com/taikoxyz/hive.git /tmp/hive | |
- name: hive tests | |
working-directory: packages/taiko-client | |
run: export HIVE_BASE_DIR=/tmp/hive && go test -v -p=1 ./integration_test -timeout=600s |