From 6b6ac8eeffebd25c232d5dc8e11f69fbda4a6c58 Mon Sep 17 00:00:00 2001 From: Matt Griswold Date: Sat, 5 Oct 2024 00:37:17 -0500 Subject: [PATCH] use uv workflow --- .github/workflows/tests.yml | 8 ++------ 1 file changed, 2 insertions(+), 6 deletions(-) diff --git a/.github/workflows/tests.yml b/.github/workflows/tests.yml index da91652..b355916 100644 --- a/.github/workflows/tests.yml +++ b/.github/workflows/tests.yml @@ -27,12 +27,8 @@ jobs: steps: - name: Check out repository uses: actions/checkout@v4 - - name: Install uv - uses: astral-sh/setup-uv@v2 - - name: Install python - run: uv python install ${{ matrix.python-version }} - - name: install tox - run: uv sync --all-extras --dev + - name: Install python, uv, and this project + uses: 20c/workflows/uv@v1 - name: Run tests run: uv run tox - name: Upload coverage