We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent c4834e2 commit 4b98d9aCopy full SHA for 4b98d9a
.github/workflows/test.yml
@@ -31,7 +31,7 @@ jobs:
31
with:
32
token: ${{ secrets.CODECOV_TOKEN }}
33
34
- integration:
+ install:
35
runs-on: ubuntu-latest
36
steps:
37
- name: Checkout repository
@@ -56,5 +56,25 @@ jobs:
56
- name: Get help
57
run: python_cli_template --help
58
59
- - name: Execute CLI
60
- run: python_cli_template --name test
+ integration:
+ runs-on: ubuntu-latest
61
+ strategy:
62
+ matrix:
63
+ command:
64
+ - python_cli_template
65
+ - python_cli_template --name test
66
+ steps:
67
+ - name: Checkout repository
68
+ uses: actions/checkout@v4
69
+
70
+ - name: Use Python
71
+ uses: actions/setup-python@v5
72
+ with:
73
+ cache: pip
74
+ python-version: 3
75
76
+ - name: Install package
77
+ run: pipx install .
78
79
+ - name: Run command
80
+ run: ${{ matrix.command }}
0 commit comments