We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent fe71912 commit 26c39dfCopy full SHA for 26c39df
.github/workflows/ci-macvim.yaml
@@ -236,6 +236,11 @@ jobs:
236
check_arch "${VIM_BIN}"
237
check_arch "${MACVIM_BIN}"
238
239
+ # Build the unit test binaries first so if they fail, it'll be at a different step from the actual test. Also,
240
+ # with link-time-optimizations, this help prevent them from using up the timeout in the tests.
241
+ - name: Build test binaries
242
+ run: make -C src unittesttargets
243
+
244
- name: Test
245
timeout-minutes: 20
246
run: make test
0 commit comments