Skip to content

Bump boto3 from 1.28.73 to 1.35.69 #547

Bump boto3 from 1.28.73 to 1.35.69

Bump boto3 from 1.28.73 to 1.35.69 #547

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 .