Skip to content

feat: wal + memory read/write + bloom + column family #657

feat: wal + memory read/write + bloom + column family

feat: wal + memory read/write + bloom + column family #657

Workflow file for this run

# This workflow will build a golang project
# For more information see: https://docs.github.com/en/actions/automating-builds-and-tests/building-and-testing-go
name: Go
on:
push:
branches:
- "*"
pull_request:
branches:
- "*"
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
go-version: [ "1.18", "1.19", "1.20" ]
steps:
- uses: actions/checkout@v3
- name: Set up Go
uses: actions/setup-go@v3
with:
go-version: ${{ matrix.go-version }}
- name: Install Dependency
run: sudo apt-get update && sudo apt-get -y install librocksdb-dev
- name: Clear cache
run: go clean -modcache
- 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: Check Format
run: if [ "$(gofmt -s -l . | wc -l)" -gt 0 ]; then exit 1; fi
- name: Lint
uses: golangci/golangci-lint-action@v3.6.0
with:
args: --verbose
version: v1.53
- name: Build
run: go build -v ./...
- name: Test
run: go test -v ./...