From 6d797466c18e68d36cbf1515f44e7092a6f8166e Mon Sep 17 00:00:00 2001 From: Kazuya Takei Date: Mon, 7 Oct 2024 03:03:57 +0900 Subject: [PATCH] fix: Run go-task to verify generated project --- .github/workflows/main.yml | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index 188a159..4ef6a23 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -14,6 +14,7 @@ jobs: steps: - uses: actions/checkout@v4 - uses: astral-sh/setup-uv@v2 + - uses: arduino/setup-task@v2 - name: Create demo project run: | uvx cookiecutter --no-input --output-dir=var . @@ -27,6 +28,4 @@ jobs: cd var/demo git init uv sync --python='${{ steps.setup-python.outputs.python-path }}' - uv run pytest - uv run make -C docs dirhtml - uvx pre-commit run --all-files + task fulltest