aboutsummaryrefslogtreecommitdiffstats
path: root/.github/workflows/tests.yml
blob: 4e6640fd404a2bf33f937955875e9f93572da456 (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.6.0
            - name: Run tests
              run: make test