mirror of
https://github.com/go-task/task.git
synced 2024-12-12 10:45:49 +02:00
Fix CI
This commit is contained in:
parent
57db6865d2
commit
fe6978b107
12
.github/workflows/test.yml
vendored
12
.github/workflows/test.yml
vendored
@ -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
2
.gitignore
vendored
@ -24,3 +24,5 @@ dist/
|
||||
|
||||
# exuberant ctags
|
||||
tags
|
||||
|
||||
/bin
|
||||
|
Loading…
Reference in New Issue
Block a user