mirror of
https://github.com/go-task/task.git
synced 2025-09-16 09:26:16 +02:00
Fix CI
This commit is contained in:
12
.github/workflows/test.yml
vendored
12
.github/workflows/test.yml
vendored
@@ -15,10 +15,10 @@ jobs:
|
|||||||
uses: actions/checkout@v1
|
uses: actions/checkout@v1
|
||||||
|
|
||||||
- name: Build
|
- name: Build
|
||||||
run: go install -v ./cmd/task
|
run: go build -o ./bin/task -v ./cmd/task
|
||||||
|
|
||||||
- name: Test
|
- name: Test
|
||||||
run: task ci
|
run: ./bin/task ci
|
||||||
|
|
||||||
windows:
|
windows:
|
||||||
name: Windows
|
name: Windows
|
||||||
@@ -34,10 +34,10 @@ jobs:
|
|||||||
uses: actions/checkout@v1
|
uses: actions/checkout@v1
|
||||||
|
|
||||||
- name: Build
|
- name: Build
|
||||||
run: go install -v ./cmd/task
|
run: go build -o ./bin/task -v ./cmd/task
|
||||||
|
|
||||||
- name: Test
|
- name: Test
|
||||||
run: task ci
|
run: ./bin/task ci
|
||||||
|
|
||||||
macos:
|
macos:
|
||||||
name: MacOS
|
name: MacOS
|
||||||
@@ -53,7 +53,7 @@ jobs:
|
|||||||
uses: actions/checkout@v1
|
uses: actions/checkout@v1
|
||||||
|
|
||||||
- name: Build
|
- name: Build
|
||||||
run: go install -v ./cmd/task
|
run: go build -o ./bin/task -v ./cmd/task
|
||||||
|
|
||||||
- name: Test
|
- name: Test
|
||||||
run: task ci
|
run: ./bin/task ci
|
||||||
|
2
.gitignore
vendored
2
.gitignore
vendored
@@ -24,3 +24,5 @@ dist/
|
|||||||
|
|
||||||
# exuberant ctags
|
# exuberant ctags
|
||||||
tags
|
tags
|
||||||
|
|
||||||
|
/bin
|
||||||
|
Reference in New Issue
Block a user