We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 3a74386 commit 65b6a2cCopy full SHA for 65b6a2c
mise.toml
@@ -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