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