mirror of
https://oauth2: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@github.com/m1ngsama/chopsticks.git
synced 2026-06-26 05:44:38 +08:00
Keep Homebrew Vim on macOS CI
This commit is contained in:
parent
f05a87cd92
commit
9611f87ef4
1 changed files with 3 additions and 3 deletions
6
.github/workflows/test.yml
vendored
6
.github/workflows/test.yml
vendored
|
|
@ -18,10 +18,10 @@ jobs:
|
|||
- name: Install Vim
|
||||
timeout-minutes: 5
|
||||
run: |
|
||||
if command -v vim >/dev/null 2>&1; then
|
||||
vim --version | head -1
|
||||
elif [ "$(uname)" = "Darwin" ]; then
|
||||
if [ "$(uname)" = "Darwin" ]; then
|
||||
brew install vim
|
||||
elif command -v vim >/dev/null 2>&1; then
|
||||
vim --version | head -1
|
||||
else
|
||||
sudo apt-get update
|
||||
sudo apt-get install -y vim
|
||||
|
|
|
|||
Loading…
Reference in a new issue