Skip to content

chore(deps): bump schneegans/dynamic-badges-action from 1.7.0 to 1.8.… #452

chore(deps): bump schneegans/dynamic-badges-action from 1.7.0 to 1.8.…

chore(deps): bump schneegans/dynamic-badges-action from 1.7.0 to 1.8.… #452

Workflow file for this run

name: Code quality checks
on:
workflow_call:
inputs:
branch:
required: false
type: string
description: 'Branch to run on'
push:
branches: [ main, 0.x ]
jobs:
check-code:
runs-on: ubuntu-latest
steps:
- name: Check out code
uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2
with:
ref: ${{ inputs.branch }}
- name: Set up Python 3.9
uses: actions/setup-python@a309ff8b426b58ec0e2a45f0f869d46889d02405 # v6.2.0
with:
python-version: 3.9
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install ".[dev]"
- name: Run pre-commit checks
run: pre-commit run --all-files