mirror of
https://forgejo.ellis.link/continuwuation/continuwuity.git
synced 2025-06-26 14:15:22 +02:00
Some checks failed
Release Docker Image / build-image (linux/amd64, release, linux-amd64, base) (push) Has been skipped
Release Docker Image / build-image (linux/arm64, release, linux-arm64, base) (push) Has been skipped
Release Docker Image / merge (push) Has been skipped
Documentation / Build and Deploy Documentation (push) Has been skipped
Checks / Prefligit / prefligit (push) Failing after 22s
Release Docker Image / define-variables (push) Failing after 5s
Checks / Rust / Format (push) Failing after 9s
Checks / Rust / Clippy (push) Failing after 51s
Checks / Rust / Cargo Test (push) Failing after 50s
47 lines
1 KiB
YAML
47 lines
1 KiB
YAML
default_install_hook_types:
|
|
- pre-commit
|
|
- commit-msg
|
|
default_stages:
|
|
- pre-commit
|
|
- manual
|
|
|
|
repos:
|
|
- repo: https://github.com/pre-commit/pre-commit-hooks
|
|
rev: v5.0.0
|
|
hooks:
|
|
- id: check-byte-order-marker
|
|
- id: check-case-conflict
|
|
- id: check-symlinks
|
|
- id: destroyed-symlinks
|
|
- id: check-yaml
|
|
- id: check-json
|
|
- id: check-toml
|
|
- id: end-of-file-fixer
|
|
- id: trailing-whitespace
|
|
- id: mixed-line-ending
|
|
- id: check-merge-conflict
|
|
- id: check-added-large-files
|
|
|
|
- repo: https://github.com/crate-ci/typos
|
|
rev: v1.26.0
|
|
hooks:
|
|
- id: typos
|
|
- id: typos
|
|
name: commit-msg-typos
|
|
stages: [commit-msg]
|
|
|
|
- repo: https://github.com/crate-ci/committed
|
|
rev: v1.1.7
|
|
hooks:
|
|
- id: committed
|
|
|
|
- repo: local
|
|
hooks:
|
|
- id: cargo-fmt
|
|
name: cargo fmt
|
|
entry: cargo +nightly fmt --
|
|
language: system
|
|
types: [rust]
|
|
pass_filenames: false
|
|
stages:
|
|
- pre-commit
|