# go-workflow **Repository Path**: mirrors_coreos/go-workflow ## Basic Information - **Project Name**: go-workflow - **Description**: No description available - **Primary Language**: Unknown - **License**: Apache-2.0 - **Default Branch**: master - **Homepage**: None - **GVP Project**: No ## Statistics - **Stars**: 0 - **Forks**: 0 - **Created**: 2020-08-08 - **Last Updated**: 2025-12-13 ## Categories & Tags **Categories**: Uncategorized **Tags**: None ## README go-workflow ----------- [![deprecated](http://badges.github.io/stability-badges/dist/deprecated.svg)](http://github.com/badges/stability-badges) Simple control flow library to setup a series of steps to execute. Example ------- ``` w := workflow.New() w.OnFailure = workflow.InteractiveFailure steps := []*workflow.Step{ &workflow.Step{ Label: "one", Run: stepOne, }, &workflow.Step{ Label: "two", Run: stepTwo, }, } } w.AddSteps(steps) w.Run() ```