Skip to content

Commit 3f027cc

Browse files
authored
Merge pull request #445 from tnull/2025-01-add-semver-checks
Add SemVer compatibility checks to CI
2 parents 80b7c92 + 962ab23 commit 3f027cc

File tree

2 files changed

+16
-1
lines changed

2 files changed

+16
-1
lines changed

.github/workflows/semver.yml

Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,15 @@
1+
name: SemVer checks
2+
on: [push, pull_request]
3+
4+
jobs:
5+
semver-checks:
6+
runs-on: ubuntu-latest
7+
steps:
8+
- name: Checkout source code
9+
uses: actions/checkout@v4
10+
- name: Install Rust stable toolchain
11+
run: |
12+
curl --proto '=https' --tlsv1.2 -sSf https://sh.rustup.rs | sh -s -- -y --profile=minimal --default-toolchain stable
13+
rustup override set stable
14+
- name: Check SemVer
15+
uses: obi1kenobi/cargo-semver-checks-action@v2

Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "ldk-node"
3-
version = "0.4.3"
3+
version = "0.5.0+git"
44
authors = ["Elias Rohrer <[email protected]>"]
55
homepage = "https://lightningdevkit.org/"
66
license = "MIT OR Apache-2.0"

0 commit comments

Comments
 (0)