Skip to content

chore(deps-dev): bump ruff from 0.5.7 to 0.6.1 (#509) #1279

chore(deps-dev): bump ruff from 0.5.7 to 0.6.1 (#509)

chore(deps-dev): bump ruff from 0.5.7 to 0.6.1 (#509) #1279

Workflow file for this run

name: Run unit tests
on: push
jobs:
tests:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: ["3.8", "3.9", "3.10", "3.11", "3.12"]
name: Python ${{ matrix.python-version }} test
steps:
- uses: actions/checkout@v4
- name: Set up python ${{ matrix.python-version }}
uses: actions/setup-python@v5
with:
python-version: ${{ matrix.python-version }}
- name: Update pip and install pipx
run: |
pip install -U pip nox poetry-plugin-export yamllint
pip --version
nox --version
poetry --version
poetry self show plugins
yamllint --version
- name: Run unit tests with nox
run: |
nox --sessions tests --python ${{ matrix.python-version }}