gohook/.github/workflows/go.yml

30 lines
596 B
YAML
Raw Normal View History

2019-11-29 00:38:02 +08:00
name: Go
on: [push]
jobs:
2019-12-07 01:10:05 +08:00
test:
# name: build
strategy:
matrix:
# go: [1.12.x, 1.13.x]
os: [macOS-latest, windows-latest] # ubuntu-latest
runs-on: ${{ matrix.os }}
2019-11-29 00:38:02 +08:00
steps:
2022-04-11 04:24:46 +08:00
- name: Set up Go 1.18
2019-12-07 01:10:05 +08:00
uses: actions/setup-go@v1
with:
2022-04-11 04:24:46 +08:00
go-version: 1.18
2019-12-07 01:10:05 +08:00
id: go
2019-11-29 00:38:02 +08:00
2019-12-07 01:10:05 +08:00
- name: Check out code into the Go module directory
uses: actions/checkout@v1
2019-11-29 00:38:02 +08:00
2019-12-07 01:10:05 +08:00
- name: Get dependencies
run: |
go get -v -t -d ./...
2019-11-29 00:38:02 +08:00
2019-12-07 01:10:05 +08:00
- name: Build
run: go build -v .
2020-02-23 23:02:21 +08:00
- name: Test
run: go test -v .