ci: apt-get update
and install vim-gtk3
#34
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
name: Run tests in headless Vim | |
on: [push] | |
jobs: | |
Specs: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Install Vim GTK | |
run: | | |
sudo apt-get update -y | |
sudo apt-get install vim-gtk3 -y | |
vim --version | |
- uses: actions/checkout@v2 | |
- uses: ruby/setup-ruby@v1 | |
with: | |
bundler-cache: true | |
- name: Run specs | |
uses: GabrielBB/xvfb-action@v1 | |
with: | |
run: bundle exec rspec |