Skip to content

Commit 65b6a2c

Browse files
committed
Create mise.toml
1 parent 3a74386 commit 65b6a2c

File tree

1 file changed

+23
-0
lines changed

1 file changed

+23
-0
lines changed

mise.toml

Lines changed: 23 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,23 @@
1+
[tasks.setup]
2+
description = "Install all project dependencies."
3+
run = ["mise install", "bundle install --jobs 4"]
4+
5+
[tasks.test]
6+
description = "Run tests"
7+
run = ["bundle exec sus", "bundle exec qt"]
8+
9+
[tasks.lint]
10+
description = "Run linter"
11+
run = "bundle exec rubocop"
12+
13+
[tasks.integrate]
14+
description = "Run tests and linter"
15+
run = ["mise run test", "mise run lint"]
16+
17+
[tasks.update]
18+
description = "Update project dependencies"
19+
run = ["mise upgrade --bump", "bundle update --jobs 4"]
20+
21+
[tasks.bench]
22+
description = "Run benchmarks"
23+
run = ["bundle exec ./bench.rb"]

0 commit comments

Comments
 (0)