Skip to content

chore(deps-dev): bump ruff from 0.6.4 to 0.6.5 (#519) #1184

chore(deps-dev): bump ruff from 0.6.4 to 0.6.5 (#519)

chore(deps-dev): bump ruff from 0.6.4 to 0.6.5 (#519) #1184

Workflow file for this run

name: Lint
on: push
jobs:
lint:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: ["3.8", "3.9", "3.10", "3.11", "3.12"]
name: Python ${{ matrix.python-version }}
steps:
- uses: actions/checkout@v4
- name: Set up python ${{ matrix.python-version }}
uses: actions/setup-python@v5
with:
python-version: ${{ matrix.python-version }}
- name: Install dependencies
run: |
pip install -U pip poetry nox poetry-plugin-export
pip --version
nox --version
poetry --version
poetry self show plugins
- name: Run nox workflow
run: nox -p ${{ matrix.python-version }} -k "not (tests or coverage)"