You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
27 lines
495 B
27 lines
495 B
8 months ago
|
## https://taskfile.dev
|
||
|
##---------------------
|
||
|
|
||
|
version: '3'
|
||
|
|
||
|
tasks:
|
||
|
update:
|
||
|
cmds:
|
||
|
- go get -u forge.chapril.org/dune/jw
|
||
|
- go mod tidy
|
||
|
lint:
|
||
|
cmds:
|
||
|
- golangci-lint run
|
||
|
test:
|
||
|
cmds:
|
||
|
- go test -cover -v ./...
|
||
|
default:
|
||
|
cmds:
|
||
|
- task: lint
|
||
|
- task: test
|
||
|
git:
|
||
|
cmds:
|
||
|
- git add .
|
||
|
- git commit -m "En cours de développement"
|
||
|
- git push
|
||
|
|