Skip to content

CI

CI #339

Workflow file for this run

name: CI
on:
schedule:
- cron: '0 10 * * *'
push:
jobs:
test-ubuntu:
runs-on: ubuntu-20.04
steps:
- uses: actions/checkout@v4
- uses: actions/setup-go@v5
with:
go-version: '>=1.19.0'
- run: go version
- name: Run test
run: |
go test -run TestClusterSingleShardRwBench tests/integration_test.go
go test -run TestClusterRwBench tests/integration_test.go
go test storage/*
go test raftcore/*