-
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.
test(gha): run bats tests on Darwin/arm64 and Linux/x64 (#15)
- Loading branch information
Showing
4 changed files
with
43 additions
and
8 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
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,27 @@ | ||
{ | ||
"cloudcode.yaml.format.singleQuote": true, | ||
"yaml.format.singleQuote": true | ||
"yaml.format.singleQuote": true, | ||
"workbench.colorCustomizations": { | ||
"activityBar.activeBackground": "#91f339", | ||
"activityBar.background": "#91f339", | ||
"activityBar.foreground": "#15202b", | ||
"activityBar.inactiveForeground": "#15202b99", | ||
"activityBarBadge.background": "#4b9bf4", | ||
"activityBarBadge.foreground": "#15202b", | ||
"commandCenter.border": "#15202b99", | ||
"sash.hoverBorder": "#91f339", | ||
"statusBar.background": "#76eb0e", | ||
"statusBar.foreground": "#15202b", | ||
"statusBarItem.hoverBackground": "#5ebb0b", | ||
"statusBarItem.remoteBackground": "#76eb0e", | ||
"statusBarItem.remoteForeground": "#15202b", | ||
"titleBar.activeBackground": "#76eb0e", | ||
"titleBar.activeForeground": "#15202b", | ||
"titleBar.inactiveBackground": "#76eb0e99", | ||
"titleBar.inactiveForeground": "#15202b99" | ||
}, | ||
"peacock.color": "#76eb0e", | ||
"cSpell.words": [ | ||
"POSIX" | ||
] | ||
} |
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,19 +1,22 @@ | ||
#!/usr/bin/env bats | ||
# shellcheck disable=SC2034 | ||
BATS_TEST_FILENAME_BASENAME=$(basename "${BATS_TEST_FILENAME}") | ||
# bats file_tags=type:features | ||
|
||
@test "can list all" { | ||
asdf list all gitui | ||
} | ||
|
||
@test "can install latest" { | ||
@test "can install latest [${BATS_TEST_FILENAME_BASENAME}]" { | ||
asdf install gitui latest | ||
} | ||
|
||
@test "can install 0.25.2" { | ||
@test "can install 0.25.2 [${BATS_TEST_FILENAME_BASENAME}]" { | ||
asdf install gitui 0.25.2 | ||
asdf list gitui | ||
} | ||
|
||
@test "can install 0.26.2" { | ||
@test "can install 0.26.2 [${BATS_TEST_FILENAME_BASENAME}]" { | ||
asdf install gitui 0.26.2 | ||
asdf list gitui | ||
} |