Cli supports zset data structures (#249) #774
Workflow file for this run
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
# 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: Check Format | |
run: | | |
unformatted=$(gofmt -s -l .) | |
if [ "$unformatted" != "" ]; then | |
echo "the following files are not formatted:" | |
for file in $unformatted; do | |
echo "$file:" | |
gofmt -s -d "$file" | |
echo "------" | |
done | |
exit 1 | |
fi | |
- name: Lint | |
uses: golangci/[email protected] | |
with: | |
args: --verbose | |
version: v1.53 | |
- name: Build | |
run: go build -v ./... | |
- name: Test | |
run: go test -v ./... |