From 66d900fa429f993f4ee4c8f2d4da779d2b935be8 Mon Sep 17 00:00:00 2001 From: Hugo Gomes Date: Tue, 21 Nov 2023 12:54:33 +0000 Subject: [PATCH] feat: add --no-cache-dir --- .github/workflows/main.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index 1706814..c4233ec 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -24,8 +24,8 @@ jobs: steps: - uses: actions/checkout@v1 - run: python --version - - run: pip install -r requirements.txt - - run: pip install . + - run: pip install --no-cache-dir -r requirements.txt + - run: pip install --no-cache-dir . - run: cleanup . - run: python setup.py test build-pypy: @@ -39,5 +39,5 @@ jobs: steps: - uses: actions/checkout@v1 - run: pypy --version - - run: pip install -r requirements.txt + - run: pip install --no-cache-dir -r requirements.txt - run: pypy setup.py test