Skip to content

Bump ruff from 0.8.4 to 0.9.2 #341

Bump ruff from 0.8.4 to 0.9.2

Bump ruff from 0.8.4 to 0.9.2 #341

Workflow file for this run

name: Tests
on:
push:
branches:
- 'master'
tags: [ '*' ]
pull_request:
branches:
- 'master'
jobs:
tests:
strategy:
max-parallel: 7
matrix:
os:
- ubuntu-22.04
python-version:
- '3.10'
- '3.11'
- '3.12'
- '3.13'
- pypy-3.9
include:
- os: ubuntu-22.04
python-version: '3.9'
coverage: true
lint: true
- os: macOS-latest
python-version: '3.9'
- os: windows-latest
python-version: '3.9'
runs-on: ${{ matrix.os }}
steps:
- uses: actions/[email protected]
- name: Set up Python ${{ matrix.python-version }}
uses: actions/[email protected]
with:
python-version: ${{ matrix.python-version }}
- name: Install dependencies
run: |
pip install -U hatch
- name: ruff
if: ${{ matrix.lint }}
run: |
hatch run lint:style
- name: mypy
if: ${{ matrix.lint }}
run: |
hatch run lint:typing
- name: Tests with coverage
run: |
hatch run cov
- name: Additional coverage
if: ${{ matrix.coverage }}
run: |
hatch run cov:cov
hatch run coverage report
hatch run coverage xml