Skip to content

Update checkpointer to commit periodically when there's no data #80

Update checkpointer to commit periodically when there's no data

Update checkpointer to commit periodically when there's no data #80

Workflow file for this run

name: ci
on:
push:
branches:
- '*'
- '*/*'
- '**'
jobs:
test:
name: Compile & Test
strategy:
matrix:
go-version: [1.17]
os: [ubuntu-latest]
runs-on: ${{ matrix.os }}
steps:
- name: Install Go
uses: actions/setup-go@v2
with:
go-version: ${{ matrix.go-version }}
- name: Checkout code
uses: actions/checkout@v2
- name: Cache go modules
uses: actions/cache@v2
with:
path: ~/go/pkg/mod
key: ${{ runner.os }}-go-${{ hashFiles('**/go.sum') }}
restore-keys: |
${{ runner.os }}-go-
- name: Setup and run integration tests
run: make integration