This repository has no description
0

Configure Feed

Select the types of activity you want to include in your feed.

1# This is a configuration file for the bacon tool 2# 3# Complete help on configuration: https://dystroy.org/bacon/config/ 4# 5# You may check the current default at 6# https://github.com/Canop/bacon/blob/main/defaults/default-bacon.toml 7 8default_job = "check" 9env.CARGO_TERM_COLOR = "always" 10 11[keybindings] 12r = "refresh" 13ctrl-s = "toggle-pause" 14 15[jobs.playground] 16workdir = "examples/playground" 17watch = ["examples/playground/src/**"] 18command = ["cargo", "run", "--"] 19need_stdout = true 20 21[jobs.specimen] 22workdir = "examples/specimen" 23watch = ["examples/specimen/src/**"] 24command = ["cargo", "run", "--"] 25 26[jobs.dna-analysis-machine] 27workdir = "examples/dna-analysis-machine" 28watch = ["examples/dna-analysis-machine/src/**"] 29command = ["cargo", "run", "--"] 30 31[jobs.doctest] 32workdir = "." 33watch = ["src/**"] 34command = ["cargo", "test", "--doc"] 35need_stdout = true