-
Notifications
You must be signed in to change notification settings - Fork 0
43 lines (35 loc) · 1.08 KB
/
Copy pathci.yml
File metadata and controls
43 lines (35 loc) · 1.08 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
# https://help.github.com/en/actions/reference/workflow-syntax-for-github-actions
name: CI
on:
pull_request:
push:
branches:
- master
jobs:
test:
name: test
# TODO: test on osx as well
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Setup upterm session
env:
DEBUG_SSH: ${{ secrets.DebugSSH }}
if: ${{ env.DEBUG_SSH == 'true' }}
uses: lhotari/action-upterm@v1
with:
## limits ssh access and adds the ssh public key for the user which triggered the workflow
# limit-access-to-actor: true
## limits ssh access and adds the ssh public keys of the listed GitHub users
limit-access-to-users: hjdivad
- name: Download Neovim
run: |
mkdir -p build
wget https://github.com/neovim/neovim/releases/download/v0.7.0/nvim.appimage
chmod +x nvim.appimage
mv nvim.appimage ./build/nvim
echo "${PWD}/build" >> $GITHUB_PATH
- name: deps
run: make deps
- name: test
run: make test