1
0
mirror of https://github.com/go-task/task.git synced 2024-12-12 10:45:49 +02:00

Add CI for Linux/Windows/MacOS powered by GitHub Actions

This commit is contained in:
Andrey Nering 2019-08-15 22:24:31 -03:00
parent 613dfe06d3
commit d235d5ab28

50
.github/workflows/test.yml vendored Normal file
View File

@ -0,0 +1,50 @@
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 .