Skip to content

moaqz/tsk

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

13 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Warning

This project is currently under active development. Features may change or be unstable.

tsk

Minimal and agnostic task runner.

Installation

go install github.com/moaqz/tsk@latest

Configuration

Option Description Type
cmd Command to execute string
description Task description string
deps Task dependencies (run before) []string
env Environment variables for the task object

Example tsk.toml

[tasks.test]
cmd = "go test ./..."
description = "Run project tests"

[tasks.build]
cmd = "go build -o myapp"
description = "Build the binary"
deps = ["test"] # 'test' will run automatically before 'build'

Usage

# Run a specific task
tsk <task-name>

# See available options
tsk --help

License

This project is licensed under the MIT License - see the LICENSE file for details.

About

📦️ Minimal and agnostic task runner

Resources

License

Stars

1 star

Watchers

0 watching

Forks

Packages

 
 
 

Contributors

Languages