We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 5f5569a commit 464e79bCopy full SHA for 464e79b
1 file changed
.github/workflows/test.yml
@@ -43,20 +43,16 @@ jobs:
43
cache: pip
44
python-version: 3
45
46
- - name: Install package
47
- run: pipx install .
48
-
49
- name: Check version
50
run: |
51
- set -e
+ pipx install .
52
version=$(grep version src/python_cli_template/__init__.py | cut -d'"' -f 2)
53
- [[ $(python -m python_cli_template --version) == $version ]]
54
- [[ $(python -m python_cli_template -v) == $version ]]
+ set -e
55
[[ $(python_cli_template --version) == $version ]]
56
[[ $(python_cli_template -v) == $version ]]
57
58
- name: Get help
59
- run: python_cli_template --help
+ run: python -m python_cli_template --help
60
61
- name: Execute CLI
62
- run: python_cli_template --name test
+ run: python -m python_cli_template --name test
0 commit comments