diff options
Diffstat (limited to 'home-config/zsh/zsh-autosuggestions/.circleci/config.yml')
-rw-r--r-- | home-config/zsh/zsh-autosuggestions/.circleci/config.yml | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/home-config/zsh/zsh-autosuggestions/.circleci/config.yml b/home-config/zsh/zsh-autosuggestions/.circleci/config.yml new file mode 100644 index 0000000..d95fa98 --- /dev/null +++ b/home-config/zsh/zsh-autosuggestions/.circleci/config.yml @@ -0,0 +1,15 @@ +version: 2 +jobs: + build: + parallelism: 4 + shell: /bin/bash --login + docker: + - image: ericfreese/zsh-autosuggestions-test:latest + steps: + - checkout + - run: + name: Running tests + command: | + for v in $(grep "^[^#]" ZSH_VERSIONS | awk "(NR + $CIRCLE_NODE_INDEX) % $CIRCLE_NODE_TOTAL == 0"); do + TEST_ZSH_BIN=zsh-$v make test || exit 1 + done |