Bump mkdocstrings-python from 1.7.2 to 1.7.3 #91
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: lint_and_test | |
on: [pull_request] | |
jobs: | |
ci: | |
runs-on: ubuntu-latest | |
strategy: | |
fail-fast: false | |
matrix: | |
python-version: ["3.9", "3.10", "3.11"] | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Set up Python ${{ matrix.python-version }} | |
uses: actions/setup-python@v4 | |
with: | |
python-version: ${{ matrix.python-version }} | |
- name: Run image | |
uses: abatilo/actions-poetry@v2 | |
with: | |
poetry-version: "1.4.2" | |
- name: poetry install | |
run: poetry install | |
- name: black | |
run: poetry run black --check --verbose fastconfig/ tests/ | |
- name: ruff | |
run: poetry run ruff check --exit-non-zero-on-fix fastconfig/ tests/ | |
- name: isort | |
run: poetry run isort --check-only fastconfig/ tests/ | |
- name: pydocstyle | |
run: poetry run pydocstyle fastconfig/ | |
- name: pytest | |
run: poetry run pytest |