mirror of https://github.com/etcd-io/bbolt.git
17 lines
375 B
YAML
17 lines
375 B
YAML
name: Tests
|
|
on: [push, pull_request]
|
|
jobs:
|
|
test:
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- uses: actions/checkout@v2
|
|
- uses: actions/setup-go@v2
|
|
with:
|
|
go-version: "1.17.8"
|
|
- run: make fmt
|
|
- run: make race
|
|
- run: make test
|
|
# Enable when fixed (same as make lint)
|
|
# - name: golangci-lint
|
|
# uses: golangci/golangci-lint-action@v2
|