1
0
mirror of https://github.com/go-task/task.git synced 2024-12-12 10:45:49 +02:00
This commit is contained in:
Andrey Nering 2019-08-15 22:32:45 -03:00
parent 57db6865d2
commit fe6978b107
2 changed files with 8 additions and 6 deletions

View File

@ -15,10 +15,10 @@ jobs:
uses: actions/checkout@v1
- name: Build
run: go install -v ./cmd/task
run: go build -o ./bin/task -v ./cmd/task
- name: Test
run: task ci
run: ./bin/task ci
windows:
name: Windows
@ -34,10 +34,10 @@ jobs:
uses: actions/checkout@v1
- name: Build
run: go install -v ./cmd/task
run: go build -o ./bin/task -v ./cmd/task
- name: Test
run: task ci
run: ./bin/task ci
macos:
name: MacOS
@ -53,7 +53,7 @@ jobs:
uses: actions/checkout@v1
- name: Build
run: go install -v ./cmd/task
run: go build -o ./bin/task -v ./cmd/task
- name: Test
run: task ci
run: ./bin/task ci

2
.gitignore vendored
View File

@ -24,3 +24,5 @@ dist/
# exuberant ctags
tags
/bin