Skip to content

Commit d3ba7d7

Browse files
committed
Typo fix
1 parent bf5e2e7 commit d3ba7d7

File tree

4 files changed

+4
-4
lines changed

4 files changed

+4
-4
lines changed

.github/workflows/linux.yaml

+1-1
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ jobs:
2121
- name: Install dependencies
2222
run: |
2323
python -m pip install --upgrade pip
24-
python -m pip install --ugprade setuptools
24+
python -m pip install --upgrade setuptools
2525
if [ -f command_runner/requirements.txt ]; then pip install -r command_runner/requirements.txt; fi
2626
- name: Generate Report
2727
env:

.github/workflows/pylint-linux.yaml

+1-1
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ jobs:
2121
- name: Install dependencies
2222
run: |
2323
python -m pip install --upgrade pip
24-
python -m pip install --ugprade setuptools
24+
python -m pip install --upgrade setuptools
2525
if [ -f command_runner/requirements.txt ]; then pip install -r command_runner/requirements.txt; fi
2626
- name: Lint with Pylint
2727
if: ${{ matrix.python-version == '3.9' }}

.github/workflows/pylint-windows.yaml

+1-1
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ jobs:
2222
- name: Install dependencies
2323
run: |
2424
python -m pip install --upgrade pip
25-
python -m pip install --ugprade setuptools
25+
python -m pip install --upgrade setuptools
2626
if (Test-Path "command_runner/requirements.txt") { pip install -r command_runner/requirements.txt }
2727
# Add additional windows requirements
2828
if (Test-Path "command_runner/requirements-win.txt") { pip install -r command_runner/requirements-win.txt }

.github/workflows/windows.yaml

+1-1
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ jobs:
2525
- name: Install dependencies
2626
run: |
2727
python -m pip install --upgrade pip
28-
python -m pip install --ugprade setuptools
28+
python -m pip install --upgrade setuptools
2929
if (Test-Path "command_runner/requirements.txt") { pip install -r command_runner/requirements.txt }
3030
- name: Generate Report
3131
env:

0 commit comments

Comments
 (0)