Add multipleRequests and do update from component_nego list #52
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: CI | |
on: | |
push: | |
branches: ["master"] | |
pull_request: | |
branches: ["master"] | |
workflow_dispatch: # to allow manual re-runs | |
jobs: | |
linting: | |
name: "Perform linting checks" | |
runs-on: ubuntu-latest | |
strategy: | |
matrix: | |
python-version: ["3.12"] | |
steps: | |
- uses: "actions/checkout@v2" | |
- uses: "actions/setup-python@v2" | |
with: | |
python-version: "${{ matrix.python-version }}" | |
- name: "Install dependencies" | |
run: | | |
python -m pip install --upgrade pip poetry | |
poetry install | |
- name: "Linting and code formating (ruff)" | |
run: | | |
poetry run pre-commit run ruff --all-files | |
- name: "Typing checks (mypy)" | |
run: | | |
poetry run pre-commit run mypy --all-files | |
- name: "Run trailing-whitespace" | |
run: | | |
poetry run pre-commit run trailing-whitespace --all-files | |
- name: "Run end-of-file-fixer" | |
run: | | |
poetry run pre-commit run end-of-file-fixer --all-files | |
- name: "Run check-docstring-first" | |
run: | | |
poetry run pre-commit run check-docstring-first --all-files | |
- name: "Run debug-statements" | |
run: | | |
poetry run pre-commit run debug-statements --all-files | |
- name: "Run check-ast" | |
run: | | |
poetry run pre-commit run check-ast --all-files | |
tests: | |
name: Python ${{ matrix.python-version}} on ${{ matrix.os }}${{ fromJSON('[" (extras)", ""]')[matrix.extras == ''] }} | |
needs: linting | |
runs-on: ${{ matrix.os }} | |
strategy: | |
matrix: | |
python-version: ["3.8", "3.9", "3.10", "3.11", "3.12", "pypy-3.8", "pypy-3.10"] | |
os: [ubuntu-latest, macos-latest, windows-latest] | |
extras: [false, true] | |
exclude: | |
- os: macos-latest | |
extras: true | |
- os: windows-latest | |
extras: true | |
- os: ubuntu-latest | |
python-version: "pypy-3.8" | |
extras: true | |
- os: ubuntu-latest | |
python-version: "pypy-3.10" | |
extras: true | |
- os: ubuntu-latest | |
python-version: "3.8" | |
extras: true | |
- os: ubuntu-latest | |
python-version: "3.9" | |
extras: true | |
- os: ubuntu-latest | |
python-version: "3.10" | |
extras: true | |
steps: | |
- uses: "actions/checkout@v3" | |
- uses: "actions/setup-python@v4" | |
with: | |
python-version: "${{ matrix.python-version }}" | |
- name: "Install dependencies (no speedups)" | |
if: matrix.extras == false | |
run: | | |
python -m pip install --upgrade pip poetry | |
poetry install | |
- name: "Install dependencies (with speedups)" | |
if: matrix.extras == true | |
run: | | |
python -m pip install --upgrade pip poetry | |
poetry install --extras speedups | |
- name: "Run tests" | |
run: | | |
poetry run pytest --cov kasa --cov-report xml | |
- name: "Upload coverage to Codecov" | |
uses: "codecov/codecov-action@v3" | |
with: | |
token: ${{ secrets.CODECOV_TOKEN }} |