Files
Maciej Pijanowski 6b2cf21436 .github/workflows: bump Python to 3.13
Signed-off-by: Maciej Pijanowski <maciej.pijanowski@3mdeb.com>
2025-07-29 12:07:23 +02:00

29 lines
607 B
YAML

# SPDX-FileCopyrightText: 2025 3mdeb <contact@3mdeb.com>
#
# SPDX-License-Identifier: Apache-2.0
name: Pre-commit checks
on: pull_request
jobs:
pre-commit:
runs-on: ubuntu-latest
steps:
- name: Checkout repo
uses: actions/checkout@v2
- name: Fetch base branch
run: git fetch origin ${{ github.event.pull_request.base.sha }}
- name: Setup python
uses: actions/setup-python@v5
with:
python-version: 3.13
- name: Run pre-commit
uses: pre-commit/action@v3.0.1
with:
extra_args:
--all-files