We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 325749e commit fb8aa3fCopy full SHA for fb8aa3f
.github/workflows/tests.yml
@@ -50,3 +50,21 @@ jobs:
50
version: ${{ matrix.neovim_version }}
51
- name: Test GutterMarks
52
run: make test
53
+
54
+ benchmark:
55
+ name: Benchmarks
56
+ timeout-minutes: 10
57
+ strategy:
58
+ fail-fast: false
59
+ matrix:
60
+ os: ["ubuntu-latest"]
61
+ runs-on: ${{ matrix.os }}
62
63
+ steps:
64
+ - uses: actions/checkout@v4
65
+ - name: Setup neovim
66
+ uses: rhysd/action-setup-vim@v1
67
+ with:
68
+ neovim: true
69
+ - name: Benchmark GutterMarks
70
+ run: make bench
Makefile
@@ -26,6 +26,4 @@ check-lua:
26
fmt:
27
stylua lua plugin test
28
29
-ci: check test
30
-
31
.PHONY: default fmt check check-fmt check-lua ci test bench
0 commit comments