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

63 lines
1.2 KiB

4 years ago
name: Go
on:
push:
branches:
- main
4 years ago
pull_request:
branches:
- main
workflow_dispatch:
4 years ago
jobs:
build:
name: build & test
runs-on: ubuntu-latest
services:
etcd:
image: gcr.io/etcd-development/etcd:v3.5.0
ports:
- 2379:2379
env:
ETCD_LISTEN_CLIENT_URLS: http://0.0.0.0:2379
ETCD_ADVERTISE_CLIENT_URLS: http://0.0.0.0:2379
consul:
image: consul:latest
ports:
- 8500:8500
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: make test-coverage
- name: Upload coverage to Codecov
run: bash <(curl -s https://codecov.io/bash)
- 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 ./...