gohook/.github/workflows/go.yml

33 lines
654 B
YAML
Raw Normal View History

2019-11-29 00:38:02 +08:00
name: Go
on: [push]
jobs:
2023-02-25 02:41:31 +08:00
# build:
# name: Build
# runs-on: ubuntu-latest
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:
2023-02-25 02:41:31 +08:00
- name: Set up Go 1.20
2019-12-07 01:10:05 +08:00
uses: actions/setup-go@v1
with:
2023-02-25 02:41:31 +08:00
go-version: 1.20
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 .