Skip to content

Commit

Permalink
typo in CI names
Browse files Browse the repository at this point in the history
  • Loading branch information
Olivier authored and oroulet committed May 1, 2023
1 parent e8a67e5 commit d24dacf
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/python-package.yml
Original file line number Diff line number Diff line change
Expand Up @@ -29,13 +29,13 @@ jobs:
- name: Install dependencies
run: |
python -m pip install --upgrade pip
python -m pip install flake8 pytest mypy ruff
python -m pip install pytest mypy ruff
if [ -f requirements.txt ]; then pip install -r requirements.txt; fi
if [ -f dev_requirements.txt ]; then pip install -r dev_requirements.txt; fi
- name: Lint with ruff and mypy
- name: Lint with ruff
run: |
ruff check .
- name: Lint with mypy
- name: mypy
run: |
python -m pip install types-aiofiles types-python-dateutil types-pytz
python -m mypy asyncua/
Expand Down

0 comments on commit d24dacf

Please sign in to comment.