Skip to content

chore(deps): bump pytest from 8.4.1 to 9.0.3 in the uv group across 1… #671

chore(deps): bump pytest from 8.4.1 to 9.0.3 in the uv group across 1…

chore(deps): bump pytest from 8.4.1 to 9.0.3 in the uv group across 1… #671

Workflow file for this run

name: ruff_check
on:
push:
branches:
- main
pull_request:
branches:
- main
permissions:
contents: read
jobs:
ruff_check:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v6
- name: Set up Python
uses: actions/setup-python@v6
with:
python-version: "3.x"
- name: install ruff
run: |
python -m pip install --upgrade pip
pip install ruff
- name: lint check and then format check with ruff
run: |
ruff check
ruff format --diff