You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
kratos/.github/workflows/go.yml

49 lines
759 B

4 years ago
name: Go
on:
push:
branches: [ main ]
pull_request:
branches: [ main ]
jobs:
4 years ago
build:
runs-on: ubuntu-latest
4 years ago
steps:
- uses: actions/checkout@v2
4 years ago
- name: Set up Go
uses: actions/setup-go@v2
with:
go-version: 1.16
4 years ago
- name: Build
run: go build ./...
4 years ago
- name: Test
run: go test -race ./...
- name: Kratos
run: |
cd cmd/kratos
go build ./...
go test ./...
- name: HTTP
run: |
cd cmd/protoc-gen-go-http
go build ./...
go test ./...
- name: Examples
run: |
cd examples
go build ./...
go test ./...
- name: Lint
run: |
go get golang.org/x/lint/golint
golint ./...