-
Notifications
You must be signed in to change notification settings - Fork 88
Expand file tree
/
Copy pathMakefile
More file actions
25 lines (18 loc) · 719 Bytes
/
Makefile
File metadata and controls
25 lines (18 loc) · 719 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
.PHONY: test test-verbose test-minimal test-tap test-ci test-stable test-nightly
test:
@./scripts/test-runner.sh
test-verbose:
@./scripts/test-runner.sh --verbose
test-minimal:
@./scripts/test-runner.sh --minimal
test-tap:
@./scripts/test-runner.sh --tap
test-ci:
@command -v act >/dev/null 2>&1 || { echo "act is not installed"; exit 1; }
act -W .github/workflows/ci.yml
test-ci-stable:
@command -v act >/dev/null 2>&1 || { echo "act is not installed"; exit 1; }
act -W .github/workflows/ci.yml -j tests --matrix neovim_version:stable
test-ci-nightly:
@command -v act >/dev/null 2>&1 || { echo "act is not installed"; exit 1; }
act -W .github/workflows/ci.yml -j tests --matrix neovim_version:nightly