summaryrefslogtreecommitdiffstats
path: root/.github/workflows/version-check.yml
diff options
context:
space:
mode:
Diffstat (limited to '.github/workflows/version-check.yml')
-rw-r--r--.github/workflows/version-check.yml21
1 files changed, 21 insertions, 0 deletions
diff --git a/.github/workflows/version-check.yml b/.github/workflows/version-check.yml
new file mode 100644
index 0000000..628ac66
--- /dev/null
+++ b/.github/workflows/version-check.yml
@@ -0,0 +1,21 @@
+name: Version Check
+
+on:
+ pull_request:
+
+jobs:
+ version-check:
+ name: Ensure Version is as expected
+ runs-on: ubuntu-latest
+ steps:
+ - name: Checkout
+ uses: actions/checkout@v4
+
+ - name: Use Python 3.x
+ uses: actions/setup-python@v4
+ with:
+ python-version: "3.x"
+
+ - name: Version Check
+ run: python ./.github/workflows/version_check.py
+ shell: bash