1
0
mirror of https://github.com/go-kratos/kratos.git synced 2026-05-16 09:48:28 +02:00
Files
kratos/.github/workflows/go.yml
T
Tony Chen b9f821c29f transport/http: add http handler (#937)
* add http handler

* fix request error
2021-05-21 23:11:36 +08:00

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 ./...