• Stars
    star
    114
  • Rank 300,929 (Top 7 %)
  • Language
    Go
  • License
    MIT License
  • Created over 5 years ago
  • Updated over 1 year ago

Reviews

There are no reviews yet. Be the first to send feedback to the community and the maintainers!

Repository Details

Build system and task runner for Go projects

Build Status Windows Build Status

Gilbert

Build toolchain and task runner for Go

Features

Gilbert is task runner that aims to provide declarative way to define and run tasks like in other projects like Gradle, Maven and etc.

All tasks are declared in gilbert file (gilbert.yaml). Example of the file you can find here.

Full list of features:

  • Tasks
  • Actions
    • Built-in most necessary actions
      • Track file changes and re-run task on change
      • Check project test coverage with specified threshold
      • Build project
    • Plugins for custom actions

Read documentation and sample project for more information.

Installation

All release binaries are available on the releases page.

Linux, macOS and FreeBSD

curl https://raw.githubusercontent.com/go-gilbert/gilbert/master/install.sh | sh

Windows

Powershell

Invoke-Expression (Invoke-Webrequest 'https://raw.githubusercontent.com/go-gilbert/gilbert/master/install.ps1' -UseBasicParsing).Content

Note: You should run Set-ExecutionPolicy Bypass in PowerShell to be able to execute installation script.

Some features, like plugins are not available on Windows. We recommend to use Windows Subsystem for Linux (WSL) for full experience.

Usage

Please check out quick start guide.

Tools