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

26 lines
357 B

4 years ago
name: Go
on:
push:
branches: [ main ]
pull_request:
branches: [ main ]
jobs:
4 years ago
build:
runs-on: ubuntu-latest
4 years ago
steps:
- uses: actions/checkout@v2
4 years ago
- name: Set up Go
uses: actions/setup-go@v2
with:
go-version: 1.15
4 years ago
- name: Build
run: go build -v ./...
4 years ago
- name: Test
run: go test -v ./...