mirror of
https://github.com/pezkuwichain/pezkuwi-subxt.git
synced 2026-04-25 22:17:58 +00:00
05cfb02bec
To resolve issue #1136. This is a cross verification against zepter. - [cargo-featalign](https://github.com/hack-ink/cargo-featalign): Verifies the proper propagation of all features. - [zepter](https://github.com/ggwpez/zepter): Checks for accidentally enabled features. cc @ggwpez --- Switch to a new branch. Original PR #1537. --------- Signed-off-by: Xavier Lau <xavier@inv.cafe> Signed-off-by: Oliver Tale-Yazdi <oliver.tale-yazdi@parity.io> Co-authored-by: Oliver Tale-Yazdi <oliver.tale-yazdi@parity.io> Co-authored-by: Chevdor <chevdor@users.noreply.github.com>
20 lines
519 B
YAML
20 lines
519 B
YAML
name: Check Features
|
|
|
|
on:
|
|
pull_request:
|
|
types: [opened, synchronize, reopened, ready_for_review]
|
|
|
|
jobs:
|
|
check-features:
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- name: Fetch latest code
|
|
uses: actions/checkout@v4
|
|
- name: Check
|
|
uses: hack-ink/cargo-featalign-action@bea88a864d6ca7d0c53c26f1391ce1d431dc7f34 # v0.1.1
|
|
with:
|
|
crate: substrate/bin/node/runtime
|
|
features: std,runtime-benchmarks,try-runtime
|
|
ignore: sc-executor
|
|
default-std: true
|