Some checks failed
Check Changelog / Check for changelog (pull_request_target) Successful in 9s
Documentation / Build and Deploy Documentation (pull_request) Successful in 1m43s
Checks / Prek / Pre-commit & Formatting (pull_request) Successful in 3m44s
Checks / Prek / Clippy and Cargo Tests (pull_request) Successful in 13m2s
Documentation / Build and Deploy Documentation (push) Successful in 1m46s
Checks / Prek / Pre-commit & Formatting (push) Successful in 3m16s
Checks / Prek / Clippy and Cargo Tests (push) Successful in 14m1s
Release Docker Image / Build linux-amd64 (release) (push) Successful in 15m32s
Release Docker Image / Build linux-arm64 (release) (push) Successful in 11m9s
Release Docker Image / Create Multi-arch Release Manifest (push) Successful in 20s
Release Docker Image / Build linux-arm64 (max-perf) (push) Failing after 35m28s
Release Docker Image / Build linux-amd64 (max-perf) (push) Failing after 36m2s
Release Docker Image / Create Max-Perf Manifest (push) Has been skipped
59 lines
1.3 KiB
YAML
59 lines
1.3 KiB
YAML
default_install_hook_types:
|
|
- pre-commit
|
|
- pre-push
|
|
- commit-msg
|
|
default_stages:
|
|
- pre-commit
|
|
- manual
|
|
|
|
repos:
|
|
- repo: https://github.com/pre-commit/pre-commit-hooks
|
|
rev: v6.0.0
|
|
hooks:
|
|
- id: fix-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.45.0
|
|
hooks:
|
|
- id: typos
|
|
- id: typos
|
|
name: commit-msg-typos
|
|
stages: [commit-msg]
|
|
|
|
- repo: https://github.com/crate-ci/committed
|
|
rev: v1.1.11
|
|
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
|
|
|
|
- repo: local
|
|
hooks:
|
|
- id: cargo-clippy
|
|
name: cargo clippy
|
|
entry: cargo clippy -- -D warnings
|
|
language: system
|
|
pass_filenames: false
|
|
types: [rust]
|
|
stages:
|
|
- pre-push
|