Skip to content

ENH: add support for PEP 735 dependency-groups via a new workflow input test_groups #372

ENH: add support for PEP 735 dependency-groups via a new workflow input test_groups

ENH: add support for PEP 735 dependency-groups via a new workflow input test_groups #372

on:
workflow_dispatch:
push:
paths:
- .github/workflows/publish_pure_python.yml
- .github/workflows/test_publish_pure_python.yml
pull_request:
paths:
- .github/workflows/publish_pure_python.yml
- .github/workflows/test_publish_pure_python.yml
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true
jobs:
release:
uses: ./.github/workflows/publish_pure_python.yml
with:
test_group: test concurrency

Check failure on line 20 in .github/workflows/test_publish_pure_python.yml

View workflow run for this annotation

GitHub Actions / .github/workflows/test_publish_pure_python.yml

Invalid workflow file

The workflow is not valid. .github/workflows/test_publish_pure_python.yml (Line: 20, Col: 19): Invalid input, test_group is not defined in the referenced workflow.
test_extras: recommended
test_command: pytest --pyargs test_package
timeout-minutes: 5
setenv:
uses: ./.github/workflows/publish_pure_python.yml
with:
test_command: python -c "import os; assert os.getenv('CUSTOM_VAR') == 'custom value'"
env: |
CUSTOM_VAR: custom value