Skip to content

chore(deps): bump requests from 2.31.0 to 2.32.0 #47

chore(deps): bump requests from 2.31.0 to 2.32.0

chore(deps): bump requests from 2.31.0 to 2.32.0 #47

Workflow file for this run

on:
[push, pull_request]
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: [ '3.9', '3.10', '3.11', '3.12' ]
name: Run tests in Python ${{ matrix.python-version }}
steps:
- name: Checkout repo
uses: actions/checkout@v3
- name: Setup Python ${{ matrix.python-version }}
uses: actions/setup-python@v2
with:
python-version: ${{ matrix.python-version }}
architecture: x64
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install poetry
poetry install
- name: Lint with flake8
run: poetry run flake8
- name: Run tests with pytest
run: poetry run pytest
- name: Lint project with pylint
run: poetry run pylint *.py