mirror of
https://github.com/talent-plan/tinykv.git
synced 2024-12-27 13:20:24 +08:00
21 lines
354 B
YAML
21 lines
354 B
YAML
|
name: Go
|
||
|
on: [push,pull_request]
|
||
|
jobs:
|
||
|
|
||
|
build:
|
||
|
name: Build & Test
|
||
|
runs-on: ubuntu-latest
|
||
|
steps:
|
||
|
|
||
|
- name: Set up Go 1.13
|
||
|
uses: actions/setup-go@v1
|
||
|
with:
|
||
|
go-version: 1.13
|
||
|
id: go
|
||
|
|
||
|
- name: Check out code into the Go module directory
|
||
|
uses: actions/checkout@v1
|
||
|
|
||
|
- name: Build & Test
|
||
|
run: make ci
|