WARNING: THIS SITE IS A MIRROR OF GITHUB.COM / IT CANNOT LOGIN OR REGISTER ACCOUNTS / THE CONTENTS ARE PROVIDED AS-IS / THIS SITE ASSUMES NO RESPONSIBILITY FOR ANY DISPLAYED CONTENT OR LINKS / IF YOU FOUND SOMETHING MAY NOT GOOD FOR EVERYONE, CONTACT ADMIN AT ilovescratch@foxmail.com
Skip to content

Add metric hd95_max #79

Add metric hd95_max

Add metric hd95_max #79

Workflow file for this run

# Runs the pre-commit hooks to make sure that all changes are properly formatted and such
# Triggers on: All PRs that are mergable, but not for draft PRs
# Triggers on: all published releases (incl draft releases)
name: Pre-commit hooks
on:
pull_request:
types: [opened, synchronize, reopened, ready_for_review]
release:
types: [published]
permissions:
contents: read
jobs:
pre-commit:
if: github.event.pull_request.draft == false
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Set up Python
uses: actions/setup-python@v5
with:
python-version: 3.x
- uses: pre-commit/[email protected]
- uses: pre-commit-ci/[email protected]
if: always()