Battery-Emulator/.github/workflows/run-pre-commit.yml
dependabot[bot] df70353608
Bump actions/checkout from 4 to 5
Bumps [actions/checkout](https://github.com/actions/checkout) from 4 to 5.
- [Release notes](https://github.com/actions/checkout/releases)
- [Changelog](https://github.com/actions/checkout/blob/main/CHANGELOG.md)
- [Commits](https://github.com/actions/checkout/compare/v4...v5)

---
updated-dependencies:
- dependency-name: actions/checkout
  dependency-version: '5'
  dependency-type: direct:production
  update-type: version-update:semver-major
...

Signed-off-by: dependabot[bot] <support@github.com>
2025-08-18 01:42:22 +00:00

17 lines
301 B
YAML

# This GithHub Action runs the pre-commit defined in the .pre-commit-config.yaml file
name: 📝 Run pre-commit
on:
- push
- pull_request
jobs:
pre-commit:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v5
- name: Run pre-commit
uses: pre-commit/action@v3.0.1