Skip to content

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

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 #56

Workflow file for this run

# This workflow is used to test the action
on:
push:
pull_request:
jobs:
build_pure:
name: Test action (pure wheel)
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- id: build
uses: ./
with:
pure_python_wheel: true
test_groups: test, concurrency
test_extras: recommended
test_command: pytest --pyargs test_package
build_non_pure:
name: Test action (not pure wheel)
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- id: build_not_pure
uses: ./
with:
pure_python_wheel: "false"
test_groups: test
test_extras: recommended
test_command: pytest --pyargs test_package