Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add a workflow for running tests using GitHub Actions #31

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
52 changes: 52 additions & 0 deletions .github/workflows/run-tests.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,52 @@
name: run-tests

on: [push, pull_request]

env:
VROOM_VERSION: 0.14.0

jobs:
run-tests:
strategy:
matrix:
os: [ubuntu-22.04]
vim-flavour: [vim, neovim]
maktaba-version: [master]
include:
- os: ubuntu-22.04
vim-flavour: neovim
maktaba-version: 1.1.1
runs-on: ${{ matrix.os }}

steps:
- uses: actions/checkout@v3

- name: Install vim
if: ${{ matrix.vim-flavour == 'vim' }}
run: |
sudo apt update
sudo apt install vim vim-gtk xvfb
- name: Install neovim
if: ${{ matrix.vim-flavour == 'neovim' }}
run: |
sudo apt update
sudo apt install neovim python3-neovim xvfb
- name: Install vroom
run: |
wget https://github.com/google/vroom/releases/download/v${VROOM_VERSION}/vroom_${VROOM_VERSION}-1_all.deb
sudo dpkg -i ./vroom_${VROOM_VERSION}-1_all.deb
- name: Install plugin dependencies
run: |
git clone -b ${{ matrix.maktaba-version }} https://github.com/google/vim-maktaba.git ../maktaba/

- name: Run tests (vim)
if: ${{ matrix.vim-flavour == 'vim' }}
timeout-minutes: 10
run: |
xvfb-run script -q -e -c 'vroom --crawl'
- name: Run tests (neovim)
if: ${{ matrix.vim-flavour == 'neovim' }}
timeout-minutes: 2
run: |
xvfb-run script -q -e -c 'vroom --neovim --crawl'
continue-on-error: true
30 changes: 0 additions & 30 deletions .travis.yml

This file was deleted.