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 aa2f154 commit 260b529Copy full SHA for 260b529
.github/workflows/test.yml
@@ -30,11 +30,6 @@ jobs:
30
31
integration:
32
runs-on: ubuntu-latest
33
- strategy:
34
- matrix:
35
- command:
36
- - python-cli-template
37
- - python-cli-template --name test
38
steps:
39
- name: Checkout repository
40
uses: actions/checkout@v6
@@ -45,9 +40,6 @@ jobs:
45
- name: Install tool
46
41
run: uv tool install .
47
42
48
- - name: Run command
49
- run: ${{ matrix.command }}
50
-
51
43
- name: Get version
52
44
run: |
53
VERSION=$(grep version src/python_cli_template/__init__.py | cut -d'"' -f 2)
@@ -58,3 +50,8 @@ jobs:
58
set -e
59
[[ $(python-cli-template --version) == "$VERSION" ]]
60
[[ $(python-cli-template -v) == "$VERSION" ]]
+
54
+ - name: Run commands
55
+ run: |
56
+ python-cli-template
57
+ python-cli-template --name test
0 commit comments