-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathTaskfile.yml
More file actions
22 lines (18 loc) · 745 Bytes
/
Copy pathTaskfile.yml
File metadata and controls
22 lines (18 loc) · 745 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
# https://taskfile.dev
version: '3'
vars:
# Follows the default branch of nolte/taskfiles. The previous pin
# (`fix/py-var-names`) was a feature branch that has since been
# deleted upstream after merge; deletion of the source branch yields
# 404 on every `task` invocation here. Tracking `develop` is the
# baseline until upstream produces a tag that ships both
# taskfile-include-mkdocs.yaml AND taskfile-include-pre-commit.yaml.
TASK_COLLECTION_BASE: https://raw.githubusercontent.com/nolte/taskfiles/develop/src
includes:
mkdocs: "{{.TASK_COLLECTION_BASE}}/taskfile-include-mkdocs.yaml"
pre-commit: "{{.TASK_COLLECTION_BASE}}/taskfile-include-pre-commit.yaml"
tasks:
default:
cmds:
- task -l
silent: true