Skip to content

Bump types-requests from 2.31.0.20240406 to 2.32.0.20240622 #96

Bump types-requests from 2.31.0.20240406 to 2.32.0.20240622

Bump types-requests from 2.31.0.20240406 to 2.32.0.20240622 #96

name: Continuous deployment
on:
push:
workflow_dispatch:
jobs:
lint-python:
name: Lint Python code
runs-on: ubuntu-latest
steps:
- id: checkout
name: Checkout
uses: actions/checkout@v4
- id: setup-python
name: Setup Python
uses: actions/setup-python@v5
with:
python-version: '3.10'
cache: 'pipenv'
- id: install-pipenv
name: Install pipenv
run: curl https://raw.githubusercontent.com/pypa/pipenv/master/get-pipenv.py | python
shell: bash
- id: install-python-dependencies
name: Install Python dependencies
run: pipenv sync --dev
shell: bash
- id: lint
name: Lint Python code
run: pipenv run flake8 ./src --verbose
shell: bash
mypy-python:
name: Static-types check
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
- id: setup-python
name: Setup Python
uses: actions/setup-python@v5
with:
python-version: '3.10'
cache: 'pipenv'
- id: install-pipenv
name: Install pipenv
run: curl https://raw.githubusercontent.com/pypa/pipenv/master/get-pipenv.py | python
shell: bash
- id: install-python-dependencies
name: Install Python dependencies
run: pipenv sync --dev
shell: bash
- id: mypy
name: Run mypy
run: pipenv run mypy ./src --ignore-missing-imports --verbose
shell: bash