mirror of
https://github.com/go-kratos/kratos.git
synced 2026-05-16 09:48:28 +02:00
b9f821c29f
* add http handler * fix request error
49 lines
759 B
YAML
49 lines
759 B
YAML
name: Go
|
|
|
|
on:
|
|
push:
|
|
branches: [ main ]
|
|
pull_request:
|
|
branches: [ main ]
|
|
|
|
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 -v ./...
|
|
|
|
- name: Test
|
|
run: go test -v ./...
|
|
|
|
- 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 ./...
|