summaryrefslogtreecommitdiffstats
path: root/.github/workflows/version-check.yml
blob: 628ac66de57907f64675bc236f44531a2cff26e1 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
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