-
Notifications
You must be signed in to change notification settings - Fork 9
Expand file tree
/
Copy path.mise.toml
More file actions
39 lines (30 loc) · 943 Bytes
/
.mise.toml
File metadata and controls
39 lines (30 loc) · 943 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
[tools]
ruby = "4.0.2"
"gem:bundler" = "4.0.4"
[tasks.install]
run = "bundle install"
description = "Install gem dependencies"
[tasks.test]
run = "bundle exec rake"
description = "Run rubocop, unit tests, integration tests, and docs"
[tasks."test:unit"]
run = "bundle exec rake spec"
description = "Run unit tests only"
[tasks."test:integration"]
run = "bundle exec rake spec_integration"
description = "Run integration tests only"
[tasks."test:all"]
run = "bundle exec rake spec_all"
description = "Run all tests (unit + integration)"
[tasks."test:matrix"]
run = "bundle exec rake test_matrix"
description = "Run tests across all Ruby versions in Docker"
[tasks.build]
run = "gem build pathspec.gemspec"
description = "Build the gem"
[tasks.benchmark]
run = "bundle exec rake benchmark"
description = "Run performance benchmarks (not included in CI)"
[env]
# Ensure bundler uses the project's vendor/bundle directory
_.file = ".env"