rename envoyfilter => arch (#91)

* rename envoyfilter => arch

* fix more files

* more fixes

* more renames
This commit is contained in:
Adil Hafeez 2024-09-27 16:41:39 -07:00 committed by GitHub
parent 7168b14ed3
commit ea86f73605
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
33 changed files with 91 additions and 99 deletions

View file

@ -3,7 +3,7 @@ repos:
rev: v4.6.0
hooks:
- id: check-yaml
exclude: envoyfilter/envoy.template.yaml
exclude: arch/envoy.template.yaml
- id: end-of-file-fixer
- id: trailing-whitespace
- repo: local
@ -12,16 +12,16 @@ repos:
name: cargo-fmt
language: system
types: [file, rust]
entry: bash -c "cd envoyfilter && cargo fmt -p intelligent-prompt-gateway -- --check"
entry: bash -c "cd arch && cargo fmt -p intelligent-prompt-gateway -- --check"
- id: cargo-clippy
name: cargo-clippy
language: system
types: [file, rust]
entry: bash -c "cd envoyfilter && cargo clippy -p intelligent-prompt-gateway --all"
entry: bash -c "cd arch && cargo clippy -p intelligent-prompt-gateway --all"
- id: cargo-test
name: cargo-test
language: system
types: [file, rust]
# --lib is to only test the library, since when integration tests are made,
# they will be in a seperate tests directory
entry: bash -c "cd envoyfilter && cargo test -p intelligent-prompt-gateway --lib"
entry: bash -c "cd arch && cargo test -p intelligent-prompt-gateway --lib"