-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'master' into dependabot/pip/tests/black-24.3.0
- Loading branch information
Showing
16 changed files
with
316 additions
and
9 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 |
---|---|---|
|
@@ -6,7 +6,7 @@ jobs: | |
name: Run test suite | ||
runs-on: ubuntu-latest | ||
steps: | ||
- uses: actions/[email protected].1 | ||
- uses: actions/[email protected].6 | ||
|
||
# Run the tests | ||
- name: '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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,11 @@ | ||
# dotfiles | ||
alias dots=$DOTFILES/install | ||
|
||
# jump around | ||
alias j="z" | ||
|
||
# zip | ||
alias tarz="tar -czvf" | ||
# unzip | ||
alias tarx="tar -xzvf" | ||
alias taru="tarx" |
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
File renamed without changes.
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 |
---|---|---|
|
@@ -17,3 +17,5 @@ if ! command -v gh &>/dev/null; then | |
brew install gh | ||
fi | ||
fi | ||
|
||
gh --version |
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,17 @@ | ||
#!/usr/bin/env bash | ||
|
||
# ----------------------------------------------------------------------------- | ||
# Description: | ||
# Install Azure CLI. | ||
# | ||
|
||
if ! command -v az &>/dev/null; then | ||
if [[ "$OSTYPE" == "linux-gnu"* ]]; then | ||
# https://docs.microsoft.com/en-us/cli/azure/install-azure-cli-linux?pivots=apt | ||
curl -sL https://aka.ms/InstallAzureCLIDeb | sudo bash | ||
elif [[ "$OSTYPE" == "darwin"* ]]; then | ||
brew install azure-cli | ||
fi | ||
fi | ||
|
||
az --version |
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,14 @@ | ||
#!/usr/bin/env bash | ||
|
||
# ----------------------------------------------------------------------------- | ||
# Description: | ||
# (macOS only) Install MeetingBar. | ||
# | ||
|
||
if [[ "$OSTYPE" == "darwin"* ]]; then | ||
if ! brew list --cask meetingbar &> /dev/null; then | ||
brew install --cask meetingbar | ||
else | ||
echo "MeetingBar is already installed." | ||
fi | ||
fi |
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,14 @@ | ||
#!/usr/bin/env bash | ||
|
||
# ----------------------------------------------------------------------------- | ||
# Description: | ||
# (macOS only) Install BetterDisplay. | ||
# | ||
|
||
if [[ "$OSTYPE" == "darwin"* ]]; then | ||
if ! brew list --cask betterdisplay &> /dev/null; then | ||
brew install --cask betterdisplay | ||
else | ||
echo "BetterDisplay is already installed." | ||
fi | ||
fi |
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,14 @@ | ||
#!/usr/bin/env bash | ||
|
||
# ----------------------------------------------------------------------------- | ||
# Description: | ||
# (macOS only) Install dockutil. | ||
# | ||
|
||
if [[ "$OSTYPE" == "darwin"* ]]; then | ||
if ! brew list dockutil &> /dev/null; then | ||
brew install dockutil | ||
else | ||
echo "dockutil is already installed." | ||
fi | ||
fi |
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,14 @@ | ||
#!/usr/bin/env bash | ||
|
||
# ----------------------------------------------------------------------------- | ||
# Description: | ||
# Install cmatrix. | ||
# | ||
|
||
if ! command -v "cmatrix" &>/dev/null; then | ||
if [[ "$OSTYPE" == "linux-gnu"* ]]; then | ||
sudo apt-get install -qq cmatrix &>/dev/null | ||
elif [[ "$OSTYPE" == "darwin"* ]]; then | ||
brew install cmatrix | ||
fi | ||
fi |
Oops, something went wrong.