diff --git a/.github/workflows/build-and-test.yml b/.github/workflows/build-and-test.yml index 9c2609b..fdb3795 100644 --- a/.github/workflows/build-and-test.yml +++ b/.github/workflows/build-and-test.yml @@ -52,8 +52,13 @@ jobs: with: python-version: ${{ matrix.python-version }} + - name: Install project dependecies + run: uv sync --group dev --group test --locked --no-install-project + with: + python-version: ${{ matrix.python-version }} + - name: Lint with ruff run: uv run --frozen ruff check . - name: Test with python ${{ matrix.python-version }} - run: uv run pytest + run: uv run --frozen pytest