Skip to content

build(deps): bump boto3 from 1.34.135 to 1.34.137 #455

build(deps): bump boto3 from 1.34.135 to 1.34.137

build(deps): bump boto3 from 1.34.135 to 1.34.137 #455

Workflow file for this run

name: Checks
on:
push:
branches: [ main ]
pull_request:
branches: [ main ]
permissions:
contents: write
jobs:
check-code:
runs-on: ${{ matrix.os }}
strategy:
matrix:
python-version: [ '3.12' ]
os: [ ubuntu-latest ]
steps:
- uses: actions/checkout@v4
- name: Install Python ${{ matrix.python-version }}
uses: actions/setup-python@v5
with:
python-version: ${{ matrix.python-version }}
- name: Install dependencies
run: |
python -m pip install -U pip
python -m pip install -r requirements-dev.txt
- name: Run linters
run: make lint
- name: Run tests
run: make test
dependabot-auto-merge:
name: 'Dependabot auto merge'
needs: [ check-code ]
runs-on: ubuntu-latest
if: ${{ github.actor == 'dependabot[bot]' && github.event_name == 'pull_request'}} # Detect that the PR author is dependabot
steps:
- name: Enable auto-merge for Dependabot PRs
run: gh pr merge --auto --merge "$PR_URL" # Use GitHub CLI to merge automatically the PR
env:
PR_URL: ${{ github.event.pull_request.html_url }}
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}