Skip to content

Commit

Permalink
Merge pull request #30 from fjarri/semver-checks
Browse files Browse the repository at this point in the history
Add `cargo semver-checks` action to CI
  • Loading branch information
fjarri authored Oct 16, 2024
2 parents 6bf0d84 + b6ea994 commit 8d03f91
Show file tree
Hide file tree
Showing 3 changed files with 19 additions and 4 deletions.
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

0 comments on commit 8d03f91

Please sign in to comment.