From 9f8598c7945bdc0b339df051b8dd9ee00e6a1969 Mon Sep 17 00:00:00 2001 From: Robert Garrett Date: Sat, 8 Nov 2025 11:14:27 -0600 Subject: [PATCH] Drop CI semver check, this isn't a library Semver checks only make sense for things that have a public interface. While an application technically does, these semver checks are for the Rust API not the GUI shape or something. It's for checking that a library upholds it's semver promise. This is not a library, so these checks don't make sense. --- .gitea/workflows/check.yml | 13 ------------- 1 file changed, 13 deletions(-) diff --git a/.gitea/workflows/check.yml b/.gitea/workflows/check.yml index d9b2ba36..0738de38 100644 --- a/.gitea/workflows/check.yml +++ b/.gitea/workflows/check.yml @@ -34,19 +34,6 @@ jobs: components: rustfmt - name: cargo fmt --check run: cargo fmt --check - semver: - runs-on: ubuntu-latest - name: semver - steps: - - uses: actions/checkout@v4 - with: - submodules: true - - name: Install stable - uses: dtolnay/rust-toolchain@stable - with: - components: rustfmt - - name: cargo-semver-checks - uses: obi1kenobi/cargo-semver-checks-action@v2 doc: # run docs generation on nightly rather than stable. This enables features like # https://doc.rust-lang.org/beta/unstable-book/language-features/doc-cfg.html which allows an