Skip to content

Commit a31da3f

Browse files
committed
chore: streamline font installation process using homebrew commands
- update font installation commands to use `brew tap` and `brew install --cask` - removal of the `font-monaspace` installation command
1 parent 81e6449 commit a31da3f

File tree

1 file changed

+7
-6
lines changed

1 file changed

+7
-6
lines changed

.github/workflows/ci.yml

Lines changed: 7 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -99,12 +99,13 @@ jobs:
9999
elif [[ $RUNNER_OS == "Linux" ]]; then
100100
curl -fsSL https://raw.githubusercontent.com/Homebrew/install/master/install.sh
101101
eval "$(/home/linuxbrew/.linuxbrew/bin/brew shellenv)"
102-
brew install font-monaspace
103-
brew install font-fira-code-nerd-font
104-
brew install font-profont-nerd-font
105-
brew install font-caskaydia-cove-nerd-font
106-
brew install font-monaspace-nerd-font
107-
brew install font-noto-nerd-font
102+
brew tap homebrew/cask-fonts
103+
brew install --cask font-monaspace
104+
brew install --cask font-fira-code-nerd-font
105+
brew install --cask font-profont-nerd-font
106+
brew install --cask font-caskaydia-cove-nerd-font
107+
brew install --cask font-monaspace-nerd-font
108+
brew install --cask font-noto-nerd-font
108109
fi
109110
110111
- name: cargo test

0 commit comments

Comments
 (0)