Skip to content

Commit c992f39

Browse files
author
root
committed
trigger GHA
1 parent 5a29e16 commit c992f39

3 files changed

Lines changed: 152 additions & 92 deletions

File tree

.github/workflows/tests.yml

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -79,7 +79,12 @@ jobs:
7979
virtualenvs-in-project: true
8080
installer-parallel: false # Currently there seems to be some race-condition in windows
8181

82-
- name: Install library
82+
- 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'
8388
run: poetry install --no-interaction
8489

8590
- uses: actions/cache@v4

0 commit comments

Comments
 (0)