Skip to content

add local system specs to benchmark on read me #20

add local system specs to benchmark on read me

add local system specs to benchmark on read me #20

name: SuperMassive CI
on:
push:
branches:
- master
pull_request:
branches:
- master
jobs:
test:
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v2
- name: Set up Go
uses: actions/setup-go@v3
with:
go-version: '1.24'
- name: Install dependencies
run: go mod tidy
working-directory: src
- name: Run utility tests
run: go test ./utility -v
working-directory: src
- name: Run pager tests
run: go test ./storage/pager -v
working-directory: src
- name: Run hashtable tests
run: go test ./storage/hashtable -v
working-directory: src
- name: Run client network tests
run: go test ./network/client -v
working-directory: src
- name: Run server network tests
run: go test ./network/server -v
working-directory: src
- name: Run journal tests
run: go test ./journal -v
working-directory: src
- name: Run node replica tests
run: go test ./instance/nodereplica -v
working-directory: src
- name: Run node primary tests
run: go test ./instance/node -v
working-directory: src
- name: Run cluster tests
run: go test ./instance/cluster -v
working-directory: src