Skip to content

⬆️ Bump requests from 2.31.0 to 2.32.2 #2569

⬆️ Bump requests from 2.31.0 to 2.32.2

⬆️ Bump requests from 2.31.0 to 2.32.2 #2569

Workflow file for this run

name: build
on: [ push, pull_request ]
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: [ "3.8", "3.9", "3.10", "3.11" ]
steps:
- uses: actions/checkout@v4
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v4.7.1
with:
python-version: ${{ matrix.python-version }}
- name: Install poetry
run: make download-poetry
- name: Set up cache
uses: actions/cache@v4
with:
path: .venv
key: venv-${{ matrix.python-version }}-${{ hashFiles('pyproject.toml') }}-${{ hashFiles('poetry.lock') }}
- name: Install dependencies
run: poetry install
- name: Run safety checks
run: STRICT=1 poetry run make check-safety
- name: Run style checks
run: STRICT=1 poetry run make check-style
- name: Run tests
run: poetry run make test