We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 2137435 commit d183929Copy full SHA for d183929
1 file changed
.github/workflows/tests.yml
@@ -52,12 +52,12 @@ jobs:
52
--mount type=volume,source=rootmount,target=/root \
53
--mount type=bind,source=./,target=/app \
54
-t hjwp/obeythetestinggoat-book-tester:latest \
55
- bash -c 'git submodule status | cut -d" " -f3 | xargs -I% bash -c "echo %"'
+ bash -c 'git submodule status | cut -d" " -f3 | xargs -P0 -I% bash -c "echo %"'
56
docker run --rm \
57
58
59
60
- bash -c 'git submodule status | cut -d" " -f3 | xargs -I% bash -c "cd % && git fetch"'
+ bash -c 'git submodule status | cut -d" " -f3 | xargs -P0 -I% bash -c "cd % && git fetch"'
61
62
- name: check submodule branches
63
run: |
0 commit comments