Skip to content

build(deps): bump requests from 2.30.0 to 2.31.0 #51

build(deps): bump requests from 2.30.0 to 2.31.0

build(deps): bump requests from 2.30.0 to 2.31.0 #51

Workflow file for this run

name: QA
'on':
pull_request:
branches:
- master
push:
branches:
- master
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v4
with:
python-version: ${{ matrix.python-version }}
- name: install deps
run: |
yarn
yarn install-python-deps
- name: Lint with mypy
run: yarn mypy
- name: Lint with pylint
run: yarn pylint
- name: Check spelling
run: yarn check-spelling
- name: Check formatting
run: yarn check-formatting
strategy:
matrix:
python-version:
- '3.10'
- '3.11'