Skip to content

Bump ruff from 0.6.8 to 0.6.9 #485

Bump ruff from 0.6.8 to 0.6.9

Bump ruff from 0.6.8 to 0.6.9 #485

Workflow file for this run

name: ci
on: [push, pull_request]
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
python: [ "3.9", "3.10", "3.11", "3.12" ]
name: python-${{ matrix.python }}
steps:
- name: Checkout
uses: actions/checkout@main
- name: Setup python-${{ matrix.python }}
uses: actions/setup-python@main
with:
python-version: ${{ matrix.python }}
cache: 'pip'
- name: Install Dependencies
run: pip install ".[dev]"
- name: Test
run: pytest
- name: Lint (pylint)
run: pylint trackpack test
- name: Lint (ruff)
run: ruff check --output-format=github .
formatting:
name: formatting
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@main
- name: Setup Python
uses: actions/setup-python@main
with:
python-version: "3.12"
cache: 'pip'
- name: Setup
run: pip install ".[dev]"
- name: Check Formatting
run: ruff format --check --diff .