Bump google-api-python-client from 2.99.0 to 2.153.0 #542
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 . |