Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add cargo semver-checks action to CI #30

Merged
merged 3 commits into from
Oct 16, 2024
Merged
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
17 changes: 16 additions & 1 deletion .github/workflows/manul.yml → .github/workflows/ci.yml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
name: manul
name: ci
on:
workflow_dispatch:
pull_request:
Expand Down Expand Up @@ -95,3 +95,18 @@ jobs:
with:
command: fmt
args: --all -- --check

semver:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: dtolnay/rust-toolchain@v1
with:
toolchain: stable
components: rustfmt
profile: minimal
override: true
- uses: obi1kenobi/cargo-semver-checks-action@v2
with:
package: manul
feature-group: all-features
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ We try to find the balance between supporting the majority of protocols and keep
[docs-image]: https://docs.rs/manul/badge.svg
[docs-link]: https://docs.rs/manul/
[license-image]: https://img.shields.io/crates/l/manul
[build-image]: https://github.com/entropyxyz/manul/actions/workflows/manul.yml/badge.svg?branch=master&event=push
[build-link]: https://github.com/entropyxyz/manul/actions?query=workflow%3Amanul
[build-image]: https://github.com/entropyxyz/manul/actions/workflows/ci.yml/badge.svg?branch=master&event=push
[build-link]: https://github.com/entropyxyz/manul/actions?query=workflow%3Aci
[coverage-image]: https://codecov.io/gh/entropyxyz/manul/branch/master/graph/badge.svg
[coverage-link]: https://codecov.io/gh/entropyxyz/manul
2 changes: 1 addition & 1 deletion manul/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "manul"
version = "0.0.1"
version = "0.0.2-dev"
edition = "2021"
rust-version = "1.81"
authors = ['Entropy Cryptography <[email protected]>']
Expand Down
Loading