Skip to content

Commit

Permalink
Try to fix windows tests
Browse files Browse the repository at this point in the history
  • Loading branch information
Erol444 committed Feb 5, 2024
1 parent 4416553 commit 706ecc3
Showing 1 changed file with 11 additions and 2 deletions.
13 changes: 11 additions & 2 deletions .github/workflows/test_install_requirements.yml
Original file line number Diff line number Diff line change
Expand Up @@ -91,9 +91,18 @@
- name: Download chocolatey
shell: pwsh
run: Set-ExecutionPolicy Bypass -Scope Process -Force; [System.Net.ServicePointManager]::SecurityProtocol = [System.Net.ServicePointManager]::SecurityProtocol -bor 3072; iex ((New-Object System.Net.WebClient).DownloadString('https://chocolatey.org/install.ps1'))
- name: Install dependencies
- name: Install cmake dependency
shell: pwsh
run: choco install cmake git python --version 3.10 pycharm-community -y
run: choco install cmake -y
- name: Install git dependency
shell: pwsh
run: choco install git -y
- name: Install python dependency
shell: pwsh
run: choco install python --version 3.10 -y
- name: Install pycharm-community dependency
shell: pwsh
run: choco install pycharm-community -y
- name: Install requrirements
run: |
python install_requirements.py
Expand Down

0 comments on commit 706ecc3

Please sign in to comment.