bump to v1.0.1beta #8
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 |