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

105 lines
2.0 KiB
YAML
Raw Normal View History

2019-07-07 19:18:02 +02:00
version: '3'
2018-03-04 21:20:26 +02:00
includes:
2020-02-16 16:20:53 +02:00
docs:
taskfile: ./docs
dir: ./docs
vars:
GIT_COMMIT:
sh: git log -n 1 --format=%h
GO_PACKAGES:
2018-07-15 20:42:46 +02:00
sh: go list ./...
env:
CGO_ENABLED: '0'
2018-03-04 21:20:26 +02:00
tasks:
2018-07-15 20:42:46 +02:00
default:
cmds:
- task: lint
2018-07-15 20:42:46 +02:00
- task: test
2018-03-04 21:20:26 +02:00
install:
desc: Installs Task
sources:
- './**/*.go'
2018-03-04 21:20:26 +02:00
cmds:
- go install -v -ldflags="-w -s -X main.version={{.GIT_COMMIT}}" ./cmd/task
mod:
desc: Downloads and tidy Go modules
cmds:
- go mod download
- go mod tidy
2018-03-04 21:20:26 +02:00
clean:
desc: Cleans temp files and folders
cmds:
- rm -rf dist/
- rm -rf tmp/
2018-03-04 21:20:26 +02:00
lint:
desc: Runs golangci-lint
sources:
- './**/*.go'
cmds:
- golangci-lint run
sleepit:build:
desc: Builds the sleepit test helper
sources:
- ./cmd/sleepit/**/*.go
generates:
- ./bin/sleepit
cmds:
- go build -o ./bin/sleepit{{exeExt}} ./cmd/sleepit
sleepit:run:
desc: Builds the sleepit test helper
deps: [sleepit:build]
cmds:
- ./bin/sleepit {{.CLI_ARGS}}
silent: true
2018-03-04 21:20:26 +02:00
test:
desc: Runs test suite
deps: [install]
2018-03-04 21:20:26 +02:00
cmds:
2018-07-15 20:42:46 +02:00
- go test {{catLines .GO_PACKAGES}}
2018-03-04 21:20:26 +02:00
test:signals:
desc: Runs test suite with signals tests included
deps: [install, sleepit:build]
cmds:
- go test {{catLines .GO_PACKAGES}} -tags signals
2018-03-04 21:20:26 +02:00
test-release:
desc: Tests release process without publishing
cmds:
- goreleaser --snapshot --rm-dist
2018-03-04 21:20:26 +02:00
2022-09-09 02:21:39 +02:00
docs:changelog:
desc: Copy CHANGELOG.md to the documentation website
vars:
FILE: docs/docs/changelog.md
cmds:
- rm {{.FILE}}
- 'echo "---" >> {{.FILE}}'
- 'echo "slug: /changelog/" >> {{.FILE}}'
- 'echo "sidebar_position: 6" >> {{.FILE}}'
- 'echo "---" >> {{.FILE}}'
- 'echo "" >> {{.FILE}}'
- 'cat CHANGELOG.md >> {{.FILE}}'
npm:publish:
desc: Publish release to npm
cmds:
- npm publish --access=public
2018-07-15 20:42:46 +02:00
packages:
cmds:
- echo '{{.GO_PACKAGES}}'
silent: true