Skip to content

Update README.md

Update README.md #780

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: 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 ./...