This repository has been archived by the owner on Apr 19, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 357
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #34 from AlecAivazis/feat/v1
Added support for non-string prompts
- Loading branch information
Showing
32 changed files
with
925 additions
and
399 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,10 @@ | ||
tests: | ||
summary: Run the test suite | ||
command: go test {{.files}} | ||
|
||
install-deps: | ||
summary: Install all of package dependencies | ||
command: go get -t {{.files}} | ||
|
||
variables: | ||
files: '$(go list -v ./... | grep -Ev "github.com/AlecAivazis/survey/(tests|examples)")' |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,10 @@ | ||
language: go | ||
|
||
before_install: | ||
- go get github.com/AlecAivazis/run | ||
|
||
install: | ||
- go get -t . ./terminal/... | ||
- run install-deps | ||
|
||
script: | ||
- go test -v . ./terminal/... | ||
- run tests |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
package survey | ||
package core | ||
|
||
import ( | ||
"bytes" | ||
|
Oops, something went wrong.