We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 464e79b commit eefc0d1Copy full SHA for eefc0d1
.github/workflows/test.yml
@@ -45,11 +45,10 @@ jobs:
45
46
- name: Check version
47
run: |
48
- pipx install .
49
version=$(grep version src/python_cli_template/__init__.py | cut -d'"' -f 2)
50
set -e
51
- [[ $(python_cli_template --version) == $version ]]
52
- [[ $(python_cli_template -v) == $version ]]
+ [[ $(python -m python_cli_template --version) == $version ]]
+ [[ $(python -m python_cli_template -v) == $version ]]
53
54
- name: Get help
55
run: python -m python_cli_template --help
0 commit comments