From ce208f4233ccda2671e925545f23d52809941369 Mon Sep 17 00:00:00 2001 From: Princess Stevenson Date: Tue, 7 Apr 2026 19:59:50 +0100 Subject: [PATCH] Add version consistency check --- .../workflows/version-consistency-check.yml | 23 +++++++++++++++++++ 1 file changed, 23 insertions(+) create mode 100644 .github/workflows/version-consistency-check.yml diff --git a/.github/workflows/version-consistency-check.yml b/.github/workflows/version-consistency-check.yml new file mode 100644 index 0000000..f664f97 --- /dev/null +++ b/.github/workflows/version-consistency-check.yml @@ -0,0 +1,23 @@ +name: Version Consistency Check + +on: + push: + branches: [main] + pull_request: + branches: [main] + +jobs: + version-check: + name: Version Consistency Check + permissions: + contents: read + runs-on: ubuntu-latest-small + steps: + - uses: actions/checkout@v6 + with: + persist-credentials: false + + - name: Check Version Consistency + uses: Skyscanner/version-consistency-check@v1 + with: + fail-on-inconsistency: true