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.
2 parents 8c82c2f + d5522d9 commit 9a4b2bdCopy full SHA for 9a4b2bd
.github/workflows/test_action.yml
@@ -31,3 +31,16 @@ jobs:
31
test_groups: test
32
test_extras: recommended
33
test_command: pytest --pyargs test_package
34
+
35
+ build_no_groups:
36
+ name: Test action (default, no groups)
37
+ runs-on: ubuntu-latest
38
39
+ steps:
40
+ - uses: actions/checkout@v4
41
+ - id: build
42
+ uses: ./
43
+ with:
44
+ pure_python_wheel: true
45
+ test_extras: recommended
46
+ test_command: python -c 'import test_package'
action.yml
@@ -60,6 +60,7 @@ runs:
60
shell: bash
61
run: |
62
echo "group_flags=$( python -c "print(' '.join(f'--group {g.strip()}' for g in '${{ inputs.test_groups }}'.split(',')))" ) " >> "$GITHUB_ENV"
63
+ if: ${{ inputs.test_groups != '' }}
64
65
- name: Test source distribution
66
0 commit comments