[uniconfig] Fix Device Discovery RPC #116
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
# NOTE: adding exceptions for codespell into .github/.codespellignore | |
name: pr-check | |
on: | |
pull_request: | |
branches: [ main ] | |
workflow_dispatch: | |
jobs: | |
codespell: | |
name: Check spelling issues in repository. | |
runs-on: ubuntu-latest | |
timeout-minutes: 5 | |
steps: | |
- uses: actions/checkout@v3 | |
- uses: codespell-project/actions-codespell@master | |
with: | |
ignore_words_file: .github/.codespellignore | |
check_filenames: true | |
check_hidden: false | |
changes: | |
name: Catch sub-repository with changes. | |
runs-on: ubuntu-latest | |
timeout-minutes: 5 | |
outputs: | |
python-workers: ${{ steps.python.outputs.changes }} | |
steps: | |
- uses: actions/checkout@v3 | |
- uses: dorny/paths-filter@v2 | |
id: python | |
with: | |
filters: | | |
inventory/python: | |
- 'inventory/python/**' | |
misc/python/http: | |
- 'misc/python/http/**' | |
misc/python/influxdb: | |
- 'misc/python/influxdb/**' | |
misc/python/kafka: | |
- 'misc/python/kafka/**' | |
misc/python/python-lambda: | |
- 'misc/python/python-lambda/**' | |
resource-manager/python: | |
- 'resource-manager/python/**' | |
schellar/python: | |
- 'schellar/python/**' | |
topology-discovery/python: | |
- 'topology-discovery/python/**' | |
uniconfig/python: | |
- 'uniconfig/python/**' | |
tests: | |
name: Code testing in parallel. | |
runs-on: ubuntu-latest | |
timeout-minutes: 5 | |
needs: changes | |
if: ${{ needs.changes.outputs.python-workers != '[]' && needs.changes.outputs.python-workers != '' }} | |
strategy: | |
fail-fast: false | |
matrix: | |
directories: ${{ fromJSON(needs.changes.outputs.python-workers) }} | |
defaults: | |
run: | |
working-directory: ${{ matrix.directories }} | |
steps: | |
- uses: actions/checkout@v3 | |
- uses: actions/setup-python@v4 | |
with: | |
python-version: "3.10" | |
- uses: abatilo/actions-poetry@v2 | |
with: | |
poetry-version: "1.4.2" | |
- name: Install package dependencies. | |
run: | | |
poetry install | |
- name: Run mypy. | |
run: | | |
poetry run mypy . | |
- name: Run ruff. | |
run: | | |
poetry run ruff check . | |
- name: Run pyright. | |
run: | | |
poetry run pyright . | |
- name: Run pytests. | |
run: | | |
if [[ -d tests ]]; then | |
poetry run pytest . -vv | |
fi |