diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 8d495a95..2999f02f 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -22,9 +22,9 @@ jobs: run: uv python install 3.13 - name: Build run: rm -rf dist && uv build - - name: Smoke test (wheel) - run: uv run --isolated --no-project --with (ls dist/*.whl)\[test\] pytest tests - - name: Smoke test (source distribution) - run: uv run --isolated --no-project --with (ls dist/*.tar.gz)\[test\] pytest tests + - name: Run tests (wheel) + run: uv run --isolated --no-project --with "$(ls dist/*.whl)[test]" pytest tests + - name: Run tests (source distribution) + run: uv run --isolated --no-project --with "$(ls dist/*.tar.gz)[test]" pytest tests - name: Publish run: uv publish