Skip to content

fix: update based on feedbacks #246

fix: update based on feedbacks

fix: update based on feedbacks #246

Workflow file for this run

name: "miko sentinel test"
on:
push:
branches-ignore:
- "master"
paths:
- "node/pkg/checker/**"
workflow_dispatch:
jobs:
core-build:
strategy:
fail-fast: false
runs-on: ubuntu-latest
timeout-minutes: 10
services:
redis:
image: redis
options: >-
--health-cmd "redis-cli ping"
--health-interval 10s
--health-timeout 5s
--health-retries 5
ports:
- 6379:6379
steps:
- uses: actions/checkout@v4
- name: Setup Go
uses: actions/setup-go@v5
with:
go-version: "1.22.3"
check-latest: true
cache-dependency-path: |
./node/go.sum
- name: Install dependencies
run: |
cd ./node
go mod tidy
- name: Install Task
uses: arduino/setup-task@v2
with:
repo-token: ${{ secrets.GITHUB_TOKEN }}
- name: Run test
run: |
cd ./node
task local:test-sentinel
env:
CHAIN: "baobab"
JSON_RPC_URL: "https://public-en-kairos.node.kaia.io"