Skip to content

Commit

Permalink
github: fix test workflow for minor typos.
Browse files Browse the repository at this point in the history
Signed-off-by: Romain Bezut <[email protected]>
  • Loading branch information
morian committed Jan 2, 2025
1 parent d51f5db commit ea2e35a
Showing 1 changed file with 8 additions and 8 deletions.
16 changes: 8 additions & 8 deletions .github/workflows/tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ name: Test
on:
pull_request:
paths:
- '.github/workflows/test.yml'
- '.github/workflows/tests.yml'
- 'tests/requirements-*.txt'
- 'pyproject.toml'
- '**.py'
Expand All @@ -14,15 +14,15 @@ on:
branches:
- 'master'
paths:
- '.github/workflows/test.yml'
- '.github/workflows/tests.yml'
- 'tests/requirements-*.txt'
- 'pyproject.toml'
- '**.py'
workflow_dispatch:

jobs:
test:
name: Test aio-ld2410 with pytest
name: Test aio-ld2410 using pytest
runs-on: ubuntu-latest
strategy:
fail-fast: false
Expand All @@ -38,7 +38,7 @@ jobs:
- name: Setup Python ${{ matrix.python-version }}
uses: actions/setup-python@v5
with:
python-version: ${{ matrix.python-version }}
python-version: ${{ matrix.python-version }}

- name: Install testing dependencies
run: make install-testing
Expand Down Expand Up @@ -92,7 +92,7 @@ jobs:
files: 'artifacts/**/pytest.xml'

mypy:
name: Check typing with MyPy
name: Check typing using MyPy
runs-on: ubuntu-latest
strategy:
fail-fast: false
Expand All @@ -106,7 +106,7 @@ jobs:
- name: Setup Python ${{ matrix.python-version }}
uses: actions/setup-python@v5
with:
python-version: ${{ matrix.python-version }}
python-version: ${{ matrix.python-version }}

- name: Install linting dependencies
run: make install-package install-linting
Expand All @@ -121,7 +121,7 @@ jobs:
path: mypy.xml

ruff:
name: Check linting and formating with ruff
name: Check linting and formatting using ruff
runs-on: ubuntu-latest
strategy:
fail-fast: false
Expand All @@ -135,7 +135,7 @@ jobs:
- name: Setup Python ${{ matrix.python-version }}
uses: actions/setup-python@v5
with:
python-version: ${{ matrix.python-version }}
python-version: ${{ matrix.python-version }}

- name: Install linting dependencies
run: make install-linting
Expand Down

0 comments on commit ea2e35a

Please sign in to comment.