Skip to content

chore(deps): bump requests from 2.32.5 to 2.33.0 in the uv group across 1 directory #60

chore(deps): bump requests from 2.32.5 to 2.33.0 in the uv group across 1 directory

chore(deps): bump requests from 2.32.5 to 2.33.0 in the uv group across 1 directory #60

Workflow file for this run

name: Python
on:
push:
branches: [main]
paths: [pingpong/**, conftest.py, uv.lock, pyproject.toml, .github/workflows/**]
pull_request:
branches: [main]
paths: [pingpong/**, conftest.py, uv.lock, pyproject.toml, .github/workflows/**]
permissions:
contents: read
jobs:
build:
name: Test Python
timeout-minutes: 10
runs-on: ubuntu-latest
env:
wd: ./
steps:
- name: Check out code
uses: actions/checkout@v6
- name: Setup uv
id: setup-uv
uses: astral-sh/setup-uv@e06108dd0aef18192324c70427afc47652e63a82
with:
enable-cache: true
- name: Set up Python3.x
uses: actions/setup-python@v6
with:
python-version: 3.11.6
id: py
- name: Get requirements
working-directory: ${{env.wd}}
run: |
uv sync --locked --color never
- name: Linting, formatting, and type checking
working-directory: ${{env.wd}}
run: uv run pre-commit run --show-diff-on-failure --all-files