Skip to content

chore(deps): bump pytest from 8.3.2 to 8.3.3 #291

chore(deps): bump pytest from 8.3.2 to 8.3.3

chore(deps): bump pytest from 8.3.2 to 8.3.3 #291

Workflow file for this run

name: Format and lint
on:
push:
branches:
- main
paths:
- '**.py'
- ruff.toml
- tests/requirements_tests.txt
pull_request:
branches:
- main
paths:
- '**.py'
- ruff.toml
- tests/requirements_tests.txt
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true
permissions:
contents: write
jobs:
ruff:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-python@v5
name: Setup Python 3.11
with:
python-version: 3.11
cache: pip
cache-dependency-path: tests/requirements_tests.txt
- run: pip install -q -r tests/requirements_tests.txt
- run: make lint
- uses: stefanzweifel/git-auto-commit-action@v5
with:
commit_message: Auto lint and format using ruff