-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmise.toml
More file actions
45 lines (36 loc) · 1.18 KB
/
mise.toml
File metadata and controls
45 lines (36 loc) · 1.18 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
[tools]
"vfox:dotnet" = "10"
hk = "latest"
pkl = "latest"
[settings]
disable_backends = ["asdf"]
lockfile = true
locked = true
[tasks.restore]
run = "dotnet restore"
description = "Restore NuGet packages"
[tasks.format]
run = "dotnet format"
description = "Auto-format all source files"
[tasks."format:check"]
run = "dotnet format --verify-no-changes"
description = "Verify all source files are formatted"
[tasks.build]
depends = ["restore"]
run = "dotnet build --no-incremental"
description = "Compile all projects"
[tasks.test]
depends = ["build"]
run = "dotnet test --settings coverlet.runsettings"
description = "Run tests with 80% line coverage gate (policy in coverlet.runsettings)"
[tasks.publish]
depends = ["build"]
run = "dotnet publish src/ScanEventWorker/ScanEventWorker.csproj -c Release"
description = "Native AOT publish — catches AOT-specific compile errors"
[tasks."pkl:resolve"]
run = "pkl project resolve .github/pkl/"
description = "Update PklProject.deps.json lock file"
[tasks."pkl:gen"]
depends = ["pkl:resolve"]
run = "pkl eval --project-dir .github/pkl/ -m .github/ .github/pkl/index.pkl"
description = "Regenerate .github/workflows/*.yml and dependabot.yml from pkl source"