8000 Remove circleci by antham · Pull Request #18 · antham/strumt · GitHub
[go: up one dir, main page]
More Web Proxy on the site http://driver.im/
Skip to content

Remove circleci #18

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 2 commits into from
May 6, 2022
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
25 changes: 0 additions & 25 deletions .circleci/config.yml

This file was deleted.

16 changes: 16 additions & 0 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
name: Go

on:
push:
tags:
- v*
branches:
- master
- main
pull_request:
permissions:
contents: read

jobs:
call-workflow:
uses: antham/go-workflow-github-action/.github/workflows/build-library.yml@master
13 changes: 13 additions & 0 deletions .github/workflows/generate-changelog.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
name: Generate the changelog

on:
push:
tags:
- "*"

permissions:
contents: write

jobs:
call-workflow:
uses: antham/go-workflow-github-action/.github/workflows/generate-changelog.yml@master
23 changes: 0 additions & 23 deletions Makefile

This file was deleted.

3 changes: 1 addition & 2 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,4 @@
Strumt [![CircleCI](https://circleci.com/gh/antham/strumt/tree/master.svg?style=svg)](https://circleci.com/gh/antham/strumt/tree/master) [![codecov](https://codecov.io/gh/antham/strumt/branch/master/graph/badge.svg)](https://codecov.io/gh/antham/strumt) [![Go Report Card](https://goreportcard.com/badge/github.com/antham/strumt)](https://goreportcard.com/report/github.com/antham/strumt) [![GoDoc](https://godoc.org/github.com/antham/strumt?status.svg)](http://godoc.org/github.com/antham/strumt) [![GitHub tag](https://img.shields.io/github/tag/antham/strumt.svg)]()
=======
# Strumt [![codecov](https://codecov.io/gh/antham/strumt/branch/master/graph/badge.svg)](https://codecov.io/gh/antham/strumt) [![Go Report Card](https://goreportcard.com/badge/github.com/antham/strumt)](https://goreportcard.com/report/github.com/antham/strumt) [![GoDoc](https://godoc.org/github.com/antham/strumt?status.svg)](http://godoc.org/github.com/antham/strumt) [![GitHub tag](https://img.shields.io/github/tag/antham/strumt.svg)]()

Strumt is a library to create prompt chain. It provides multiline prompt, input validation, retry on error, ability to create typesafe prompt, ability to customize prompt and error display, a recording of prompt session and the ability to easily test your prompt scenario.

Expand Down
6 changes: 3 additions & 3 deletions interfaces.go
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@ type MultilinePrompter interface {
}

// PromptRenderer can be implemented to customize
// the way prompt is rendered, original PromptString is given
// the way prompt is rendered, original PromptString is given
// as second parameter
type PromptRenderer interface {
PrintPrompt(io.Writer, string)
Expand All @@ -60,8 +60,8 @@ type ErrorRenderer interface {
}

// SeparatorRenderer can be implemented to customize
// the way a prompt is separated from another. When
// this interface is not implemented, the default behaviour
// the way a prompt is separated from another. When
// this interface is not implemented, the default behaviour
// is to define a new line as separator
type SeparatorRenderer interface {
PrintSeparator(io.Writer)
Expand Down
14 changes: 0 additions & 14 deletions test.sh

This file was deleted.

0