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

Calling Go directly on Windows

This commit is contained in:
Andrey Nering 2019-08-15 22:50:28 -03:00
parent afeefe8259
commit a149368725

View File

@ -34,10 +34,10 @@ jobs:
uses: actions/checkout@v1 uses: actions/checkout@v1
- name: Build - name: Build
run: go build -o ./task -v ./cmd/task run: go install -v ./cmd/task
- name: Test - name: Test
run: task test run: go test -v ./...
macos: macos:
name: MacOS name: MacOS