mirror of
https://github.com/go-task/task.git
synced 2025-08-10 22:42:19 +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
|
||||
|
||||
- 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
|
||||
|
Reference in New Issue
Block a user