protoc-gen-bq-schema/.github/workflows/go.yml

63 строки
1.6 KiB
YAML
Исходник Обычный вид История

2020-12-12 03:06:59 +03:00
name: Go
on:
push:
branches:
- master
pull_request:
branches:
- master
jobs:
build:
name: Build and Lint
runs-on: ubuntu-latest
steps:
# Setup
2020-12-12 03:06:59 +03:00
- name: Setup Go
uses: actions/setup-go@v2
with:
go-version: '^1.15'
2020-12-12 15:26:05 +03:00
- name: Install protoc
uses: arduino/setup-protoc@v1
2020-12-12 15:26:05 +03:00
- name: Install protoc-gen-go
run: go get -u github.com/golang/protobuf/protoc-gen-go
- name: Checkout code
2020-12-12 03:06:59 +03:00
uses: actions/checkout@v2
# Formatting, go mod tidy, and re-generate proto extension code
2020-12-12 12:28:25 +03:00
- name: Run go fmt on all modules
2020-12-12 19:16:43 +03:00
run: go fmt ./...
2020-12-12 03:06:59 +03:00
- name: Run go mod tidy on all modules
2020-12-12 19:16:43 +03:00
run: go mod tidy
- name: Verify no changes from go fmt and go mod tidy. If you're reading this please re-run locally before PR.
2020-12-12 03:06:59 +03:00
run: |
if [ -n "$(git status --porcelain)" ]; then
git status # Show the files that failed to pass the check.
exit 1
fi
2020-12-12 03:06:59 +03:00
- name: go vet
2020-12-12 19:16:43 +03:00
run: go vet ./...
2020-12-12 03:06:59 +03:00
- name: Build code
2020-12-12 19:16:43 +03:00
run: go build
- name: Run examples
2020-12-12 19:13:46 +03:00
run: protoc --plugin=./protoc-gen-bq-schema --bq-schema_out=examples examples/foo.proto
- name: Verify examples are working
run: |
if [ -n "$(git status --porcelain)" ]; then
git status # Show the files that failed to pass the check.
exit 1
fi
2020-12-12 03:06:59 +03:00
test:
name: Root tests
runs-on: ubuntu-latest
steps:
- name: Setup Go
uses: actions/setup-go@v2
with:
go-version: '^1.15'
- name: Check code
uses: actions/checkout@v2
- run: go test -v