From 89f07240297ac77f49cbad5ea9f62d35b4c33444 Mon Sep 17 00:00:00 2001 From: Kenneth Reitz Date: Sat, 30 Mar 2024 20:31:20 -0400 Subject: [PATCH] Update test.yaml workflow --- .github/workflows/test.yaml | 19 +++++++------------ 1 file changed, 7 insertions(+), 12 deletions(-) diff --git a/.github/workflows/test.yaml b/.github/workflows/test.yaml index c192e8b..08e1865 100644 --- a/.github/workflows/test.yaml +++ b/.github/workflows/test.yaml @@ -18,17 +18,12 @@ jobs: python-version: ["3.11", "3.12"] steps: - - name: Checkout repository - uses: actions/checkout@v3 - - - name: Set up Python ${{ matrix.python-version }} - uses: actions/setup-python@v4 + - uses: actions/checkout@v3 + - uses: actions/setup-python@v4 with: - python-version: ${{ matrix.python-version }} + python-version: "3.11" + - uses: yezz123/setup-uv@v4 + - run: uv pip install -r requirements.txt + - run: pytest - - - name: Install dependencies - run: pip install uv && uv pip install -r requirements.txt - - - name: Test with pytest - run: pytest + \ No newline at end of file