-
-
Notifications
You must be signed in to change notification settings - Fork 146
34 lines (27 loc) · 866 Bytes
/
Copy pathtest.yaml
File metadata and controls
34 lines (27 loc) · 866 Bytes
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
name: Test
on: [push, pull_request]
jobs:
test:
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
strategy:
matrix:
# TODO: Get windows-latest working.
# Currently errors with: ln: failed to create symbolic link '.test/nvim/pack/main/start/conjure' -> '../../../../../': File name too long
os: [ubuntu-latest, macOS-latest]
neovim-version: ["0.10.4", "0.11.6"]
runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@v4
- name: Mise
uses: jdx/mise-action@v2
- name: Cache
uses: actions/cache@v4
with:
path: |
.test/nvim/pack
key: conjure-${{ hashFiles('scripts/setup-test-deps') }}
restore-keys: conjure-
- name: Test
run: |
mise run -t aqua:neovim/neovim@${{ matrix.neovim-version }} test