We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 88df9af commit 3bf5298Copy full SHA for 3bf5298
1 file changed
.github/workflows/ci.yml
@@ -88,6 +88,18 @@ jobs:
88
--only-explicit-features \
89
--features default
90
91
+ - name: Check rmcp (all features except local)
92
+ run: |
93
+ FEATURES=$(cargo metadata --no-deps --format-version 1 \
94
+ | jq -r '[.packages[] | select(.name == "rmcp") | .features | keys[]
95
+ | select(startswith("__") | not)
96
+ | select(. != "local")] | join(",")')
97
+ cargo semver-checks \
98
+ --package rmcp \
99
+ --baseline-rev ${{ github.event.pull_request.base.sha }} \
100
+ --only-explicit-features \
101
+ --features "$FEATURES"
102
+
103
spelling:
104
name: spell check with typos
105
runs-on: ubuntu-latest
0 commit comments