werk

Version, currently 0.7.063 versions

github.com/marghidanu/werk

A simple task runner with parallel execution and Docker support

32 stars
0 dependents
License: MIT

Nothing has been indexed for 0.7.0 yet. The tag is recorded, its shard.yml has not been read, so the manifest and dependency list below are empty because they are unknown rather than because they are absent.

Installation

# Add this to your shard.yml
dependencies:
  werk:
    github: marghidanu/werk
    version: ~> 0.7.0

Then run:

shards install

shard.yml

No shard.yml has been indexed for 0.7.0. You can read it on the repository.

Dependencies

Unknown: the shard.yml for this version has not been read yet.

README

This README is the one indexed from the repository at its latest ref, not from the tag for this version.

# Werk

Local CI pipeline runner with parallel execution and Docker support.

[![CI Status](https://github.com/marghidanu/werk/workflows/CI/badge.svg)](https://github.com/marghidanu/werk/actions)

## Features

- Declarative pipelines in a single YAML file
- Automatic parallelism based on the dependency graph
- Local and Docker executors
- Built-in vault for encrypting secrets in dotenv files
- Execution reports with per-job timing and status
- MCP server for AI assistant integration (experimental)

## Quick start

Install via Homebrew:

```
brew tap marghidanu/werk
brew install werk
```

Create a `werk.yml`:

```yaml
version: "1"

jobs:
  main:
    executor: local
    needs:
      - lint
      - test
    commands:
      - echo "Build complete!"

  lint:
    executor: local
    commands:
      - echo "Linting..."

  test:
    executor: local
    commands:
      - echo "Running tests..."
```

Run it:

```
werk run
```

Inspect the execution plan:

```
werk plan
```

Get a detailed report:

```
werk run -r
```

## Documentation

- [Installation](https://github.com/marghidanu/werk/wiki/Installation)
- [Getting started](https://github.com/marghidanu/werk/wiki/Guide)
- [Philosophy](https://github.com/marghidanu/werk/wiki/Philosophy)
- [Internals](https://github.com/marghidanu/werk/wiki/Internals)
- [MCP Server](https://github.com/marghidanu/werk/wiki/MCP)
- [FAQ](https://github.com/marghidanu/werk/wiki/FAQ)

## License

MIT