Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
18 changes: 18 additions & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -208,7 +208,25 @@
- name: Run cargo-audit
run: cargo audit

semver:
name: Semver Check
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v6

- name: Install Rust
uses: dtolnay/rust-toolchain@stable

- uses: Swatinem/rust-cache@v2

- name: Install cargo-semver-checks
run: cargo install cargo-semver-checks@0.46.0

# Run with --default-features to avoid false positives
- name: Check semver (rmcp)
run: cargo semver-checks --package rmcp --default-features

doc:

Check warning

Code scanning / CodeQL

Workflow does not contain permissions Medium

Actions job or workflow does not limit the permissions of the GITHUB_TOKEN. Consider setting an explicit permissions block, using the following as a minimal starting point: {contents: read}
name: Generate Documentation
runs-on: ubuntu-latest
steps:
Expand Down
5 changes: 5 additions & 0 deletions release-plz.toml
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
[[package]]
name = "rmcp"
# Non-default features can cause false-positive semver breaks.
# A separate CI job handles semver checking instead.
semver_check = false
Loading