sq/.github/workflows/go.yml

39 lines
811 B
YAML
Raw Normal View History

2020-03-03 13:19:04 +03:00
name: Go
on: [push, pull_request]
2020-03-03 13:19:04 +03:00
2020-08-06 20:58:47 +03:00
jobs:
2020-03-03 13:19:04 +03:00
build:
2020-08-06 20:58:47 +03:00
strategy:
matrix:
os: [ macos-latest, ubuntu-latest, windows-latest]
runs-on: ${{ matrix.os }}
2020-03-03 13:19:04 +03:00
steps:
2020-08-06 20:58:47 +03:00
- name: Set up Go 1.14
uses: actions/setup-go@v1
with:
go-version: 1.14
id: go
- name: Check out code into the Go module directory
uses: actions/checkout@v2
- name: Cache Go dependencies
uses: actions/cache@v2
with:
path: ~/go/pkg/mod
key: ${{ runner.os }}-go-${{ hashFiles('**/go.sum') }}
restore-keys: |
${{ runner.os }}-go-
2020-08-06 20:58:47 +03:00
- name: Get dependencies
run: |
go get -v -t -d ./...
- name: Build
run: go build -v .
- name: Test
run: go test -short -v ./...