Skip to content

CI(deps): Update biome to v2.3.13 (grass8) #1635

CI(deps): Update biome to v2.3.13 (grass8)

CI(deps): Update biome to v2.3.13 (grass8) #1635

---
name: Additional Checks
# Checks which are not in standardized tools such as custom checks by scripts
# in the source code or small 3rd party checks without large projects behind them.
# Number of disconnected, but simple checks can be combined into one workflow
# (and job) to reduce the number of jobs.
on:
push:
branches:
- grass[0-9]+
pull_request:
concurrency:
group: ${{ github.workflow }}-${{ github.event_name == 'pull_request' && github.head_ref || github.sha }}
cancel-in-progress: true
permissions: {}
jobs:
additional-checks:
name: Additional checks
runs-on: ubuntu-latest
env:
# renovate: datasource=python-version depName=python
PYTHON_VERSION: "3.14"
permissions:
contents: read
steps:
- name: Checkout repository contents
uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2
with:
fetch-depth: 31
persist-credentials: false
- name: Set up Python
uses: actions/setup-python@a309ff8b426b58ec0e2a45f0f869d46889d02405 # v6.2.0
with:
python-version: ${{ env.PYTHON_VERSION }}
- run: pip install pre-commit && pre-commit run -a