mirror of https://github.com/databricks/cli.git
48 lines
1.0 KiB
YAML
48 lines
1.0 KiB
YAML
name: build
|
|
|
|
on:
|
|
pull_request:
|
|
types: [opened, synchronize]
|
|
push:
|
|
branches: [main]
|
|
|
|
jobs:
|
|
tests:
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- name: Checkout
|
|
uses: actions/checkout@v2
|
|
|
|
- name: Unshallow
|
|
run: git fetch --prune --unshallow
|
|
|
|
- name: Set up Go
|
|
uses: actions/setup-go@v1
|
|
with:
|
|
go-version: 1.16.x
|
|
|
|
- name: Cache packages
|
|
uses: actions/cache@v2
|
|
with:
|
|
path: |
|
|
~/go/pkg/mod
|
|
~/.cache/go-build
|
|
/opt/hostedtoolcache/go
|
|
vendor
|
|
key: ${{ runner.os }}-go-${{ hashFiles('**/go.sum') }}
|
|
restore-keys: |
|
|
${{ runner.os }}-go-
|
|
|
|
- name: Set go env
|
|
run: |
|
|
echo "GOPATH=$(go env GOPATH)" >> $GITHUB_ENV
|
|
echo "$(go env GOPATH)/bin" >> $GITHUB_PATH
|
|
go get gotest.tools/gotestsum
|
|
go install honnef.co/go/tools/cmd/staticcheck@v0.2.2
|
|
|
|
- name: Pull external libraries
|
|
run: make vendor
|
|
|
|
- name: Run tests
|
|
run: make test
|