aboutsummaryrefslogtreecommitdiffstats
path: root/.github/workflows/tests.yml
blob: 68c2e2192d60e74886013ad0e6913ae50d6cd40a (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
name: Tests

on:
    push:
        branches:
            - "main"
    pull_request:

jobs:
    tests:
        runs-on: ubuntu-latest
        steps:
            - uses: actions/checkout@v2
            - uses: rhysd/action-setup-vim@v1
              with:
                  neovim: true
                  version: v0.7.0
            - name: Run tests
              run: make test