📋
pimp
  • Home
  • Installation
  • FAQ
  • Getting Started
    • Welcome
    • Expand commands
    • Run tasks
    • Render templates
    • Execute scripts
    • Next steps
  • User Guide
    • Pimpfile
    • Configuration File
    • Command Expander
    • Task Runner
    • Template Engine
      • Functions
    • Script Engine (PimpScript)
    • Go Library
  • Integrations
    • Bash, Zsh, Fish
Powered by GitBook
On this page
  1. User Guide

Task Runner

Following the same concept as command expansion (see above), you can also leverage pimp to behave as a task runner for your project. The ./Pimpfile in your local directory always has the highest priority.

For example, this is how you would do if you wanted to define a test task:

# ./Pimpfile
test: go test ./...
$ pimp test # runs `go test ./...`
PreviousCommand ExpanderNextTemplate Engine

Last updated 4 years ago