We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 0e27d3d commit 1c7f5d6Copy full SHA for 1c7f5d6
1 file changed
.github/workflows/test-smokes.yml
@@ -185,13 +185,19 @@ jobs:
185
run: echo "QUARTO_JULIA_PROJECT=$GITHUB_WORKSPACE/qnr" >> $GITHUB_ENV
186
shell: bash
187
188
+ - name: Cache Julia Packages
189
+ uses: julia-actions/cache@v2
190
+
191
+ - name: delete libcharset-1.dll to fix cache
192
+ if: runner.os == 'Windows'
193
+ run: |
194
+ rm -f "C:/Users/runneradmin/.julia/artifacts/1da3b3a2698813adf2b925c46aa2d68ec8474449/bin/libcharset-1.dll"
195
+ shell: bash
196
197
- name: Instantiate QuartoNotebookRunner
198
run: julia --project=$GITHUB_WORKSPACE/qnr -e 'using Pkg; Pkg.update()'
199
200
- - name: Cache Julia Packages
- uses: julia-actions/cache@v2
-
201
- name: Restore Julia Packages
202
working-directory: tests
203
0 commit comments