Skip to content

Commit 7bb72da

Browse files
committed
Add continuous integration
1 parent b037904 commit 7bb72da

File tree

1 file changed

+15
-0
lines changed

1 file changed

+15
-0
lines changed

.github/workflows/ci.yml

Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,15 @@
1+
name: CI
2+
3+
on: [push]
4+
5+
jobs:
6+
build:
7+
8+
runs-on: ubuntu-latest
9+
10+
steps:
11+
- uses: actions/checkout@v1
12+
- name: Install Vim
13+
run: sudo add-apt-repository -yu ppa:jonathonf/vim && sudo apt-get install -qq vim
14+
- name: Run tests
15+
run: make check

0 commit comments

Comments
 (0)