fork of https://github.com/sourcegraph/zoekt
0

Configure Feed

Select the types of activity you want to include in your feed.

ci: enable file protocol for git in tests (#451)

GitHub seems to have changed the default in the actions. This will allow
it again so tests can hopefully pass.

Test Plan: CI

+3
+3
.github/workflows/ci.yml
··· 15 15 run: apk add go git 16 16 - name: install ctags 17 17 run: ./install-ctags-alpine.sh 18 + # Needed for submodule tests in gitindex 19 + - name: git protocol.file.allow 20 + run: git config --global --replace-all protocol.file.allow always 18 21 - name: test 19 22 run: go test ./... 20 23