Merge pull request #231 from EmperorArthur/ci-fix

Update Github CI and Pre-Commit hooks
This commit is contained in:
Arthur Moore 2024-10-15 15:43:53 -04:00 committed by GitHub
commit 235da57eb0
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
2 changed files with 21 additions and 13 deletions

View file

@ -13,19 +13,10 @@ jobs:
runs-on: ubuntu-latest runs-on: ubuntu-latest
steps: steps:
- name: 💾 Check out repository - name: 💾 Check out repository
uses: actions/checkout@v3 uses: actions/checkout@v4
- uses: actions/setup-python@v3 # WARNING: This must be v3
- name: 🪝 Cache pre-commit hooks
uses: actions/cache@v3
with:
path: ~/.cache/pre-commit
key: "pre-commit-${{ runner.os }}-${{ hashFiles('.pre-commit-config.yaml')
}}"
- name: ✨ Install pre-commit - name: ✨ Install pre-commit
shell: bash uses: pre-commit/action@v3.0.1
run: python3 -m pip install pre-commit
- name: 🔥 Test - name: 🔥 Test
run: pre-commit run --show-diff-on-failure --all-files run: pre-commit run --show-diff-on-failure --all-files

View file

@ -1,7 +1,24 @@
repos: repos:
- repo: https://github.com/pre-commit/pre-commit-hooks - repo: https://github.com/pre-commit/pre-commit-hooks
rev: v4.4.0 rev: v5.0.0
hooks: hooks:
- id: check-merge-conflict - id: check-merge-conflict
- id: end-of-file-fixer - id: end-of-file-fixer
- id: fix-byte-order-marker
- id: trailing-whitespace - id: trailing-whitespace
args: [--markdown-linebreak-ext=md]
- id: check-case-conflict
- id: check-illegal-windows-names
- id: check-json
- id: check-yaml
#- id: name-tests-test # Ensure's pytest files end in "_test.py
- id: no-commit-to-branch # Prevent accidental commits to main
- repo: local
hooks:
- id: no-stl
name: Forbid STL files
entry: Do not commit STL files.
language: fail
files: \.stl
types: [binary]