mirror of
https://github.com/sheerun/vim-polyglot.git
synced 2025-11-13 22:13:50 -05:00
22 lines
412 B
YAML
22 lines
412 B
YAML
name: Vim Polyglot CI
|
|
|
|
on:
|
|
push:
|
|
pull_request:
|
|
schedule:
|
|
- cron: '0 0 * * 0' # weekly
|
|
|
|
jobs:
|
|
test:
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- name: Install Vim
|
|
run: |
|
|
sudo add-apt-repository ppa:jonathonf/vim -y
|
|
sudo apt-get update -q
|
|
sudo apt-get install -y vim expect
|
|
vim --version
|
|
- uses: actions/checkout@v2
|
|
- name: Run Tests
|
|
run: make test
|