Skip to content

Bump ruff from 0.1.3 to 0.1.9 #102

Bump ruff from 0.1.3 to 0.1.9

Bump ruff from 0.1.3 to 0.1.9 #102

Workflow file for this run

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