-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathTaskfile.yml
More file actions
48 lines (39 loc) · 745 Bytes
/
Taskfile.yml
File metadata and controls
48 lines (39 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
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
# https://taskfile.dev
version: "3"
tasks:
format:py:
cmds:
- ruff format build.py
sources:
- build.py
internal: true
format:cs:
cmds:
- dotnet format EvanMod.csproj
sources:
- ./**/**.cs
internal: true
format:
deps: [format:py, format:cs]
format:check:py:
cmds:
- ruff format --check build.py
sources:
- build.py
internal: true
format:check:cs:
cmds:
- dotnet format EvanMod.csproj --verify-no-changes
sources:
- ./**/**.cs
internal: true
format:check:
deps: [format:check:py, format:check:cs]
build:
cmds:
- py build.py
sources:
- tmod.json
tag:
cmds:
- py build.py tag {{.CLI_ARGS}}