From c9c80fc7e87ffd17692bd17b0110fc773845bda9 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Cl=C3=A9ment=20Robert?= Date: Mon, 23 Jun 2025 12:25:37 +0200 Subject: [PATCH] TST: add a job without dependency groups --- .github/workflows/test_action.yml | 13 +++++++++++++ 1 file changed, 13 insertions(+) diff --git a/.github/workflows/test_action.yml b/.github/workflows/test_action.yml index d31d2ed..ed48e16 100644 --- a/.github/workflows/test_action.yml +++ b/.github/workflows/test_action.yml @@ -31,3 +31,16 @@ jobs: test_groups: test test_extras: recommended test_command: pytest --pyargs test_package + + build_no_groups: + name: Test action (default, no groups) + runs-on: ubuntu-latest + + steps: + - uses: actions/checkout@v4 + - id: build + uses: ./ + with: + pure_python_wheel: true + test_extras: recommended + test_command: '' \ No newline at end of file