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 eefc0d1 commit 5321c78Copy full SHA for 5321c78
.github/workflows/test.yml
@@ -43,15 +43,18 @@ 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
version=$(grep version src/python_cli_template/__init__.py | cut -d'"' -f 2)
52
set -e
- [[ $(python -m python_cli_template --version) == $version ]]
- [[ $(python -m python_cli_template -v) == $version ]]
53
+ [[ $(python_cli_template --version) == $version ]]
54
+ [[ $(python_cli_template -v) == $version ]]
55
56
- name: Get help
- run: python -m python_cli_template --help
57
+ run: python_cli_template --help
58
59
- name: Execute CLI
- run: python -m python_cli_template --name test
60
+ run: python_cli_template --name test
0 commit comments