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 b5a5b1c commit e66e892Copy full SHA for e66e892
.github/workflows/ci_tests.yaml
@@ -153,8 +153,13 @@ jobs:
153
env:
154
GH_TOKEN: ${{ github.token }}
155
156
- - name: Setup data version control (DVC)
+ - name: Setup data version control (DVC) [Unix]
157
run: python -m pip install dvc
158
+ if: runner.os != 'Windows'
159
+
160
+ - name: Setup data version control (DVC) [Windows]
161
+ run: choco install dvc
162
+ if: runner.os == 'Windows'
163
164
# Pull baseline image data from dvc remote (DAGsHub)
165
- name: Pull baseline image data from dvc remote
0 commit comments