Skip to content

Commit bb43022

Browse files
committed
Updates.
1 parent d9a3369 commit bb43022

File tree

3 files changed

+5
-2
lines changed

3 files changed

+5
-2
lines changed

.github/workflows/codeql-analysis.yml

+1
Original file line numberDiff line numberDiff line change
@@ -41,6 +41,7 @@ jobs:
4141
python-version: '3.10'
4242
architecture: 'x64'
4343
- run: python --version
44+
- run: python -m pip install --upgrade pip
4445
- run: pip install -r requirements.txt
4546

4647
- name: setup dotnet

.github/workflows/main.yml

+3-1
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@ jobs:
4141
architecture: 'x64'
4242
- run: python --version
4343
- run: python -m pip install --upgrade pip
44-
- run: pip install -r requirements.txt
44+
- run: python -m pip install -r requirements.txt
4545
- name: Make python-code
4646
run: make python-code
4747
build-csharpcode:
@@ -63,6 +63,8 @@ jobs:
6363
with:
6464
python-version: '3.10'
6565
architecture: 'x64'
66+
- run: python --version
67+
- run: python -m pip install --upgrade pip
6668
- run: dotnet --version
6769
- name: Make csharp-code
6870
run: make csharp-code

Makefile

+1-1
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,7 @@ csharp-code: csharp-xunit-tests
4444
#*******************
4545

4646
python-requirements:
47-
pip install -r requirements.txt
47+
python -m pip install -r requirements.txt
4848

4949
python-tests:
5050
python ${workspaceFolder}scripts/run_unit_tests.py

0 commit comments

Comments
 (0)