1
0
mirror of https://github.com/go-kratos/kratos.git synced 2025-01-30 04:31:03 +02:00

26 lines
357 B
YAML
Raw Normal View History

2021-02-17 17:55:15 +08:00
name: Go
on:
push:
branches: [ main ]
pull_request:
branches: [ main ]
jobs:
2021-02-24 11:49:16 +08:00
2021-02-24 11:56:09 +08:00
build:
runs-on: ubuntu-latest
2021-02-17 17:55:15 +08:00
steps:
2021-02-24 11:56:09 +08:00
- uses: actions/checkout@v2
2021-02-17 17:55:15 +08:00
2021-02-24 11:56:09 +08:00
- name: Set up Go
uses: actions/setup-go@v2
with:
go-version: 1.15
2021-02-17 17:55:15 +08:00
2021-02-24 11:56:09 +08:00
- name: Build
run: go build -v ./...
2021-02-17 17:55:15 +08:00
2021-02-24 11:56:09 +08:00
- name: Test
run: go test -v ./...