We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 5a29e16 commit c992f39Copy full SHA for c992f39
3 files changed
.github/workflows/tests.yml
@@ -79,7 +79,12 @@ jobs:
79
virtualenvs-in-project: true
80
installer-parallel: false # Currently there seems to be some race-condition in windows
81
82
- - name: Install library
+ - name: Install library (Windows)
83
+ if: runner.os == 'Windows'
84
+ run: poetry install --no-interaction --without profiling
85
+
86
+ - name: Install library (not Windows)
87
+ if: runner.os != 'Windows'
88
run: poetry install --no-interaction
89
90
- uses: actions/cache@v4
0 commit comments