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 f7009fc commit 0abb796Copy full SHA for 0abb796
.circleci/config.yml
@@ -23,6 +23,13 @@ aliases:
23
name: Run linting tool
24
command: bundle exec rake rubocop
25
26
+ - &credentials
27
+ name: Retrieve temporary Algolia credentials if needed
28
+ command: |
29
+ if [ "$CIRCLE_PR_REPONAME" ]; then
30
+ curl -s https://algoliasearch-client-keygen.herokuapp.com | sh >> $BASH_ENV
31
+ fi
32
+
33
- &run_tests
34
name: Run unit and integration tests
35
command: |
@@ -73,6 +80,7 @@ jobs:
73
80
- restore_cache: *restore_cache
74
81
- run: *install_bundler
75
82
- save_cache: *save_cache
83
+ - run: *credentials
76
84
- run: *run_tests
77
85
78
86
test_jruby:
@@ -88,6 +96,7 @@ jobs:
88
96
89
97
90
98
99
91
100
92
101
93
102
release:
0 commit comments