Skip to content

feat: add consistent hashing algorithm #12

feat: add consistent hashing algorithm

feat: add consistent hashing algorithm #12

Workflow file for this run

name: Run unit tests
on:
push:
branches:
- main
pull_request:
branches:
- main
jobs:
test:
runs-on: ubuntu-latest
steps:
- name: Install Go
uses: actions/setup-go@v5
with:
go-version: '1.19'
- name: Checkout code
uses: actions/checkout@v4
- name: Run unit test
run: go test -race -v ./...