summaryrefslogtreecommitdiff
path: root/.github/workflows/main.yml
blob: 7c18275817cc9e5a85e32de71fd8ebd68ee23ca4 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
name: CI
on:
  push:
    branches: [ master ]
    tags:
      - /^v\d+\.\d+\.(x|\d+)$/
  pull_request:
    branches: [ master ]

jobs:
  test_ale:
    runs-on: ubuntu-latest
    strategy:
      matrix:
        vim-version:
          - '--vim-80-only'
          - '--vim-81-only'
          - '--neovim-only'
          - '--linters-only'
    steps:
      - uses: actions/checkout@v2
      - name: Run tests
        run: ./run-tests -v ${{ matrix.vim-version }}