Skip to content

chore(deps): bump ruff from 0.7.1 to 0.7.2 #141

chore(deps): bump ruff from 0.7.1 to 0.7.2

chore(deps): bump ruff from 0.7.1 to 0.7.2 #141

Workflow file for this run

name: Checks
on:
pull_request:
workflow_dispatch:
permissions:
contents: write
pull-requests: write
jobs:
checks:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
with:
fetch-depth: 0
lfs: true
- uses: actions/setup-python@v5
with:
python-version: "3.12"
cache: pip
- name: Install dependencies
run: |
python -m pip install -U pip
python -m pip install -r requirements-tests.txt
- name: Checks
run: ./checks.sh
- name: Build
run: ./build.sh
- name: Automerge
if: ${{ github.actor == 'dependabot[bot]' }}
run: gh pr merge --auto --rebase "$PR_URL"
env:
PR_URL: ${{github.event.pull_request.html_url}}
GITHUB_TOKEN: ${{secrets.GITHUB_TOKEN}}