Browse Source

bootstrap taskfile

migrate-to-golang
Dennis Jekubczyk 3 years ago
parent
commit
a30f95d60d
2 changed files with 17 additions and 1 deletions
  1. +2
    -1
      .github/workflows/test.yml
  2. +15
    -0
      Taskfile.yml

+ 2
- 1
.github/workflows/test.yml

@ -12,4 +12,5 @@ jobs:
- uses: actions/setup-go@v2
with:
go-version: "1.16"
- run: echo 'TODO'
- uses: arduino/setup-task@v1
- run: task world

+ 15
- 0
Taskfile.yml

@ -0,0 +1,15 @@
version: '3'
silent: true
tasks:
world:
desc: run - literally - evertyhing ;)
cmds:
- task: test
test:
cmds: [ go test ./... ]
default:
cmds: [ task: world ]

Loading…
Cancel
Save