mirror of
https://github.com/bestbytes/datatrans.git
synced 2025-10-16 12:05:36 +00:00
26 lines
468 B
YAML
26 lines
468 B
YAML
name: Go
|
|
on: [push, pull_request]
|
|
jobs:
|
|
|
|
test-build:
|
|
name: Test & Build
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
|
|
- name: Set up Go 1.12
|
|
uses: actions/setup-go@v1
|
|
with:
|
|
go-version: 1.12
|
|
id: go
|
|
|
|
- name: Check out code into the Go module directory
|
|
uses: actions/checkout@v1
|
|
|
|
- name: Test
|
|
run: |
|
|
go mod tidy -v
|
|
go test -race ./...
|
|
|
|
- name: Build
|
|
run: go build ./...
|