Skip to content

build(deps-dev): bump ruff from 0.6.6 to 0.7.3 #211

build(deps-dev): bump ruff from 0.6.6 to 0.7.3

build(deps-dev): bump ruff from 0.6.6 to 0.7.3 #211

Workflow file for this run

name: New pull request received
on: [pull_request, workflow_dispatch]
jobs:
check:
strategy:
matrix:
python-version: ['3.8', '3.9', '3.10', '3.11', '3.12']
platform: [ubuntu-latest, macos-latest, windows-latest]
runs-on: ${{ matrix.platform }}
steps:
- name: Check out
uses: actions/checkout@v4
with:
fetch-depth: 0
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v5
with:
python-version: ${{ matrix.python-version }}
- name: Install dependencies
run: |
python -m pip install -U pip poetry invoke
inv env.init-dev --no-pre-commit
- name: Style check
run: |
inv style
- name: Check vulnerability
run: |
inv secure
- name: Run tests
run: |
poetry run tox