Skip to content

Bump google-api-python-client from 2.99.0 to 2.153.0 #542

Bump google-api-python-client from 2.99.0 to 2.153.0

Bump google-api-python-client from 2.99.0 to 2.153.0 #542

Workflow file for this run

name: Code Quality
on: [push]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Set up Python
uses: actions/setup-python@v5
with:
python-version: "3.11"
cache: 'pip'
- name: install dependencies
run: |
python -m pip install --upgrade pip
python -m pip install -r config/requirements/local.txt
- name: ruff quality checks
run: |
ruff check .
ruff format . --check
- name: mypy quality checks
run: |
mypy . --install-types --non-interactive --ignore-missing-imports
- name: djhtml quality checks
run: |
djhtml .