-
Notifications
You must be signed in to change notification settings - Fork 1
37 lines (35 loc) · 1.12 KB
/
checks.yaml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
name: Version Check
on:
pull_request:
branches:
- main
jobs:
checks:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Setup Python
uses: actions/setup-python@v4
with:
python-version: '3.11'
cache: 'pip'
cache-dependency-path: 'pyproject.toml'
- name: Install dependencies
run: |
pip install --editable .
pip install packaging
- name: Fetch versions
run: |
git fetch origin --tags
previous_version=$(git describe --tags --match="[0-9]*" origin/main)
latest_version=$(pip show project_extraction | awk '/^Version: / {sub("^Version: ", ""); print}')
echo "Version tag on main: $previous_version"
echo "Version tag on this branch: $latest_version"
echo "PREVIOUS_VERSION=$previous_version" >> $GITHUB_ENV
echo "LATEST_VERSION=$latest_version" >> $GITHUB_ENV
- name: Assert version
run: |
python <<EOP
import sys; from packaging import version
sys.exit(int(version.parse("$PREVIOUS_VERSION") >= version.parse("$LATEST_VERSION")))
EOP