We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent f7ab357 commit 7a490c1Copy full SHA for 7a490c1
1 file changed
.github/workflows/test.yml
@@ -23,7 +23,20 @@ jobs:
23
run: |
24
python -m pip install --upgrade pip
25
pip install -r requirements.txt
26
-
+
27
+ - name: Create config.toml from secrets
28
+ run: |
29
+ mkdir -p instance
30
+ cat <<EOF > instance/config.toml
31
+ ES_API_KEY_ID = "${{ secrets.ES_API_KEY_ID }}"
32
+ ES_API_KEY_SECRET = "${{ secrets.ES_API_KEY_SECRET }}"
33
+ ES_NODES = ${{
34
+ secrets.ES_NODES
35
+ }}
36
+ SECRET_KEY = "${{ secrets.SECRET_KEY }}"
37
+ META_SERVICE = "${{ secrets.META_SERVICE }}"
38
+ EOF
39
40
- name: Run tests
41
42
pytest app/test
0 commit comments