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.
58 lines
1019 B
58 lines
1019 B
name: Go
|
|
|
|
on:
|
|
push:
|
|
branches: [ main ]
|
|
pull_request:
|
|
branches: [ main ]
|
|
workflow_dispatch:
|
|
|
|
jobs:
|
|
|
|
build:
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- uses: actions/checkout@v2
|
|
|
|
- name: Set up Go
|
|
uses: actions/setup-go@v2
|
|
with:
|
|
go-version: 1.16
|
|
|
|
- name: Build
|
|
run: go build ./...
|
|
|
|
- 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 ./...
|
|
|
|
lint:
|
|
name: lint
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- uses: actions/checkout@v2
|
|
- name: Lint
|
|
uses: golangci/golangci-lint-action@v2
|
|
with:
|
|
version: v1.41
|
|
args: --disable-all
|
|
skip-go-installation: true
|
|
skip-pkg-cache: true
|
|
only-new-issues: true
|
|
|