fix: CI checks-quick workflow improvements

- Format TOML files (lychee.toml, orchestrator/Cargo.toml)
- Regenerate umbrella crate
- Add --ignore vendor to markdownlint (vendor is upstream code)
This commit is contained in:
2025-12-23 10:20:20 +03:00
parent ebd8fafdee
commit 35612a9cad
4 changed files with 9 additions and 10 deletions
+4 -4
View File
@@ -76,8 +76,8 @@ exclude = [
# Sıfır Etki - Kapanmış/Rate-Limited Siteler
# ============================================
# Deprecated/shutdown sites
"https://substrate.io/",
"https://invarch.network/",
"https://substrate.io/",
# Rate limited (403)
"https://aventus.io/",
"https://efinity.io/",
@@ -86,8 +86,8 @@ exclude = [
"https://parachain.capitaldex.exchange/",
"https://stackoverflow.com/.*",
# Server errors (5xx)
"https://impactprotocol.network/",
"http://laminar.network/",
"https://impactprotocol.network/",
"https://neatcoin.org/",
# Network/DNS errors (defunct chains)
"https://allfeat.network/",
@@ -112,11 +112,11 @@ exclude = [
# ============================================
# GitHub commit-specific URLs (cannot migrate)
# ============================================
"https://github.com/paritytech/polkadot-sdk/blob/.*/bizinikiwi/.*",
"https://github.com/pezkuwichain/pezkuwi-sdk/blob/[a-f0-9]+/.*",
"https://github.com/pezkuwichain/pezkuwi-sdk/issues/.*/commits/.*",
"https://github.com/pezkuwichain/pezkuwi-sdk/issues/.*/files.*",
"https://github.com/pezkuwichain/pezkuwi-sdk/blob/[a-f0-9]+/.*",
"https://github.com/pezkuwichain/pezkuwi-sdk/tree/[a-f0-9]+/.*",
"https://github.com/paritytech/polkadot-sdk/blob/.*/bizinikiwi/.*",
# Migrated bizinikiwi references
"https://github.com/pezkuwichain/bizinikiwi.*",
]
+2 -2
View File
@@ -121,8 +121,8 @@ jobs:
CONFIG: .github/.markdownlint.yaml
run: |
echo "Checking markdown formatting. More info: docs/contributor/markdown_linting.md"
echo "To fix potential erros, you can run 'markdownlint --config .github/.markdownlint.yaml -f --ignore target .' locally."
markdownlint --config "$CONFIG" --ignore target .
echo "To fix potential errors, you can run 'markdownlint --config .github/.markdownlint.yaml -f --ignore target --ignore vendor .' locally."
markdownlint --config "$CONFIG" --ignore target --ignore vendor .
check-umbrella:
runs-on: ubuntu-latest
timeout-minutes: 20
-1
View File
@@ -1,6 +1,5 @@
[package]
name = "pezkuwi-sdk"
version = "0.1.0"
description = "Pezkuwi SDK umbrella crate."
license = "Apache-2.0"
@@ -15,6 +15,7 @@ keywords = ["orchestrator", "sdk", "zombienet"]
[dependencies]
anyhow = { workspace = true }
async-trait = { workspace = true }
erased-serde = { workspace = true }
fancy-regex = { workspace = true }
futures = { workspace = true }
glob-match = { workspace = true }
@@ -24,19 +25,18 @@ libsecp256k1 = { workspace = true }
multiaddr = { workspace = true }
pezkuwi-subxt = { workspace = true }
pezkuwi-subxt-signer = { workspace = true }
pezsc-chain-spec = { workspace = true }
pezsp-core = { workspace = true }
rand = { workspace = true }
regex = { workspace = true }
reqwest = { workspace = true }
serde = { workspace = true, features = ["derive"] }
serde_json = { workspace = true, features = ["arbitrary_precision"] }
sha2 = { workspace = true, default-features = false }
pezsp-core = { workspace = true }
thiserror = { workspace = true }
tokio = { workspace = true, features = ["time"] }
tracing = { workspace = true }
uuid = { workspace = true }
erased-serde = { workspace = true }
pezsc-chain-spec = { workspace = true }
# Zombienet deps
configuration = { workspace = true }