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 0bee013 commit 0e4364dCopy full SHA for 0e4364d
.github/workflows/ci.yml
@@ -46,13 +46,14 @@ jobs:
46
- name: Build Dockerised CLI
47
run: sbt cli/docker
48
49
- - run: |
50
-
+ - name: Test repos
+ shell: bash
51
+ run: |
52
set -eu
53
check_repo() {
54
REPO=$1
55
mkdir -p .repos/$REPO
- git clone https://github.com/$REPO.git .repos/$REPO
56
+ git clone https://github.com/$REPO.git .repos/$REPO && cd .repos/$REPO && git submodule update --init
57
58
docker run -v $PWD/.repos/$REPO:/sources -w /sources sourcegraph/scip-java:latest scip-java index
59
file .repos/$REPO/index.scip || (echo "$REPO SCIP index doesn't exist!"; exit 1)
0 commit comments