diff --git a/.github/workflows/manul.yml b/.github/workflows/ci.yml similarity index 86% rename from .github/workflows/manul.yml rename to .github/workflows/ci.yml index cc2613f..332366b 100644 --- a/.github/workflows/manul.yml +++ b/.github/workflows/ci.yml @@ -1,4 +1,4 @@ -name: manul +name: ci on: workflow_dispatch: pull_request: @@ -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 diff --git a/README.md b/README.md index 4d58b9c..2b14e58 100644 --- a/README.md +++ b/README.md @@ -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 diff --git a/manul/Cargo.toml b/manul/Cargo.toml index adef1de..80957a9 100644 --- a/manul/Cargo.toml +++ b/manul/Cargo.toml @@ -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 ']