-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathTaskfile.yml
More file actions
46 lines (41 loc) · 1.14 KB
/
Taskfile.yml
File metadata and controls
46 lines (41 loc) · 1.14 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
# --------------------------------------------------------------
# WARNING: This file is managed by centralized sync management system.
# Do not edit this file directly, your changes will be overwritten.
# See https://github.com/orange-cloudavenue/workflows for more information.
# --------------------------------------------------------------
# yaml-language-server: $schema=https://taskfile.dev/schema.json
---
version: "3"
# * Import
includes:
go: ".taskfiles/golang.yml"
license: ".taskfiles/license.yml"
pre-commit: ".taskfiles/pre-commit.yml"
tf: ".taskfiles/terraform.yml"
yaml: ".taskfiles/yaml.yml"
# * Tasks
tasks:
install:
desc: Install required tools
cmds:
- task: go:install
- task: license:install
- task: pre-commit:install
init:
desc: Initialize the project
cmds:
- task: go:init
- task: license:init
- task: pre-commit:init
lint:
desc: Run linters
cmds:
- task: license:lint
- task: go:lint
- task: go:actions:deps
- task: go:actions:generate
generate:
desc: Generate code and docs
cmds:
- task: go:run
- task: license:run