mirror of
https://github.com/go-task/task.git
synced 2024-12-14 10:52:43 +02:00
51 lines
1000 B
YAML
51 lines
1000 B
YAML
|
name: Test
|
||
|
on: [push]
|
||
|
jobs:
|
||
|
linux:
|
||
|
name: Linux
|
||
|
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: Build
|
||
|
run: go test -v .
|
||
|
|
||
|
windows:
|
||
|
name: Windows
|
||
|
runs-on: windows-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: Build
|
||
|
run: go test -v .
|
||
|
|
||
|
macos:
|
||
|
name: MacOS
|
||
|
runs-on: macOS-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: Build
|
||
|
run: go test -v .
|