-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmise.toml
More file actions
34 lines (28 loc) · 908 Bytes
/
mise.toml
File metadata and controls
34 lines (28 loc) · 908 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
[tools]
go = "1.26.3"
pitchfork = "2.10.0"
[tasks.test]
description = "Run tests for every Go module in the workspace"
depends = ["test:root", "test:adapters", "test:examples"]
[tasks."test:adapters"]
description = "Run adapter-focused tests"
run = [
"go test ./adapters/...",
"cd state/postgres && go test ./...",
"cd state/redis && go test ./...",
]
[tasks."test:postgres"]
description = "Run Postgres state integration tests with Testcontainers"
run = "cd state/postgres && go test ./..."
[tasks."test:redis"]
description = "Run Redis state integration tests with Testcontainers"
run = "cd state/redis && go test ./..."
[tasks."test:root"]
description = "Run tests for the root Go module"
run = "go test ./..."
[tasks."test:examples"]
description = "Run example module tests"
run = [
"cd examples/slack-redis-state && go test ./...",
"cd examples/slack-postgres-state && go test ./...",
]