summaryrefslogtreecommitdiffstats
path: root/.github/workflows/test.yml
blob: 1bc06d9b65383d64619e5bdc32aa96e686148007 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
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
        vim --version
    - uses: actions/checkout@v2
    - name: Run Tests
      run: scripts/test