Skip to content

Disable EVM mempool #476

Disable EVM mempool

Disable EVM mempool #476

Workflow file for this run

name: Liveness check
on:
push:
branches:
- main
pull_request:
branches:
- main
permissions:
contents: read
jobs:
liveness-test:
runs-on: ubuntu-latest
timeout-minutes: 10
steps:
- uses: actions/checkout@v4
- uses: actions/setup-go@v5
with:
go-version: 1.23.x
- uses: technote-space/[email protected]
id: git_diff
with:
PATTERNS: |
**/*.go
go.mod
go.sum
**/go.mod
**/go.sum
**/Makefile
Makefile
- name: Install Kiichain
run: |
make build
if: env.GIT_DIFF
- name: Start Local Network
run: |
make start-localnet-ci > liveness.out 2>&1 &
if: env.GIT_DIFF
- name: Test Local Network Liveness
run: |
./contrib/scripts/test_localnet_liveness.sh 100 5 20 localhost
if: env.GIT_DIFF