-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
6 changed files
with
38 additions
and
14 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 |
---|---|---|
@@ -1 +1 @@ | ||
VERSION=1.3 | ||
VERSION=1.4 |
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,23 +1,34 @@ | ||
version: 1.0 | ||
envfile: .env | ||
values: | ||
TEST: Hello World! | ||
TEST: Values work | ||
|
||
scripts: | ||
build: go build -o ./internal/sharpdev ./src | ||
test1: sharpdev build && ./internal/sharpdev echo1 | ||
test2: sharpdev build && ./internal/sharpdev echo2 $_ARG1 | ||
test2: sharpdev build && ./internal/sharpdev echo2 $_ARG1 $_ARG2 | ||
|
||
test3: | | ||
sharpdev build | ||
cd ./internal | ||
./sharpdev -p echo1 | ||
./sharpdev -p echo3 | ||
cd .. | ||
test4: | | ||
sharpdev build | ||
cd ./internal | ||
./sharpdev -v | ||
./sharpdev --version | ||
cd .. | ||
echo1: echo TEST | ||
echo2: echo $_ARG1 | ||
echo2: echo $_ARG1 $_ARG2 | ||
echo3: echo $ECHO | ||
|
||
full: | | ||
sharpdev test1 | ||
sharpdev test2 Test2 | ||
sharpdev test2 Args Works | ||
sharpdev test3 | ||
sharpdev test4 | ||
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