Skip to content

Commit

Permalink
Create mise.toml
Browse files Browse the repository at this point in the history
  • Loading branch information
joeldrapper committed Feb 19, 2025
1 parent 3a74386 commit 65b6a2c
Showing 1 changed file with 23 additions and 0 deletions.
23 changes: 23 additions & 0 deletions mise.toml
Original file line number Diff line number Diff line change
@@ -0,0 +1,23 @@
[tasks.setup]
description = "Install all project dependencies."
run = ["mise install", "bundle install --jobs 4"]

[tasks.test]
description = "Run tests"
run = ["bundle exec sus", "bundle exec qt"]

[tasks.lint]
description = "Run linter"
run = "bundle exec rubocop"

[tasks.integrate]
description = "Run tests and linter"
run = ["mise run test", "mise run lint"]

[tasks.update]
description = "Update project dependencies"
run = ["mise upgrade --bump", "bundle update --jobs 4"]

[tasks.bench]
description = "Run benchmarks"
run = ["bundle exec ./bench.rb"]

0 comments on commit 65b6a2c

Please sign in to comment.