We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 132fb07 commit 5bb035dCopy full SHA for 5bb035d
.github/workflows/ci.yaml
@@ -77,13 +77,27 @@ jobs:
77
pytest notebooks;
78
fi
79
80
+ - name: Upload Notebook Artifacts
81
+ if: matrix.env_name == 'py_latest_dependencies'
82
+ uses: actions/upload-artifact@v3
83
+ with:
84
+ name: docs_outputs
85
+ path: docs/
86
+
87
# Documentation build job
88
docs:
89
+ needs: test
90
runs-on: ubuntu-latest
91
steps:
92
- name: Checkout Code
93
uses: actions/checkout@v3
94
95
+ - name: Download Notebook Artifacts
96
+ uses: actions/download-artifact@v3
97
98
99
100
101
- name: Setup Python
102
uses: actions/setup-python@v4
103
with:
0 commit comments