Skip to content
This repository has been archived by the owner on Sep 11, 2024. It is now read-only.

Bump boto3 from 1.28.70 to 1.34.113 #558

Bump boto3 from 1.28.70 to 1.34.113

Bump boto3 from 1.28.70 to 1.34.113 #558

Workflow file for this run

name: pre-commit-checks
on:
push:
branches:
- main
pull_request:
branches:
- main
jobs:
test:
runs-on: ubuntu-latest
timeout-minutes: 10
steps:
- name: Check out repository code
uses: actions/checkout@v4
- name: Install poetry
run: pipx install poetry==1.3.2
- name: Install python or load from cache with dependencies
uses: actions/setup-python@v5
with:
python-version: "3.10"
cache: "poetry"
- name: Install dependencies
run: |
poetry install --all-extras --with dev
- name: Run pre-commit checks
run: |
poetry run pre-commit run --all-files