-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Added file version.py and fixed reference
- Loading branch information
Showing
2 changed files
with
14 additions
and
3 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -17,8 +17,12 @@ jobs: | |
- name: Setup Python & Poetry Environment | ||
uses: exasol/python-toolbox/.github/actions/[email protected] | ||
|
||
# file .github/workflows/checks.yml | ||
# step "Check Version(s)" searches file exasol/toolbox/version.py | ||
# while actually the github repo using the PTB should use a local path | ||
# to its own version file | ||
- name: Check Version(s) | ||
run: poetry run version-check exasol/toolbox/version.py | ||
run: poetry run version-check version.py | ||
|
||
build-documentation-job: | ||
name: Build Documentation | ||
|
@@ -28,10 +32,10 @@ jobs: | |
steps: | ||
- name: SCM Checkout | ||
uses: actions/checkout@v3 | ||
|
||
- name: Setup Python & Poetry Environment | ||
uses: exasol/python-toolbox/.github/actions/[email protected] | ||
|
||
- name: Build Documentation | ||
run: | | ||
poetry run python -m nox -s build-docs | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,7 @@ | ||
# ATTENTION: | ||
# This file is generated, do not edit it manually! | ||
# If you need to change the version, do so in the project.toml, e.g. by using `poetry version X.Y.Z`. | ||
MAJOR = 0 | ||
MINOR = 0 | ||
PATCH = 1 | ||
VERSION = f"{MAJOR}.{MINOR}.{PATCH}" |