Skip to content

Commit

Permalink
ci: verify Vim installation
Browse files Browse the repository at this point in the history
  • Loading branch information
laniakea64 committed Apr 6, 2024
1 parent 291b283 commit 8144090
Showing 1 changed file with 10 additions and 0 deletions.
10 changes: 10 additions & 0 deletions .github/workflows/build.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -33,6 +33,16 @@ jobs:
steps:
- uses: actions/checkout@v4

# Vim maybe already installed, but this appears to be an undocumented implementation detail.
# Make sure Vim is installed and working, and log Vim version.
- name: Vim
run: |
if ! which vim ;then
sudo apt-get update
sudo apt-get -y install vim
fi
vim --version
- name: Rust Toolchain Info
run: |
rustc --version
Expand Down

0 comments on commit 8144090

Please sign in to comment.