Skip to content

Commit

Permalink
remove caching from dev test, since I'm not sure about the version na…
Browse files Browse the repository at this point in the history
…me convention for dev versions
  • Loading branch information
classiqdor committed Dec 5, 2024
1 parent ff4bf5d commit 982f431
Showing 1 changed file with 0 additions and 15 deletions.
15 changes: 0 additions & 15 deletions .github/workflows/Test-CI-dev.yml
Original file line number Diff line number Diff line change
Expand Up @@ -86,21 +86,6 @@ jobs:
with:
python-version: "3.11"

- name: Get latest classiq version for cache key
id: classiq-version
run: |
echo "LATEST_CLASSIQ_VERSION=$(pip index versions classiq 2>/dev/null | grep classiq | cut -d '(' -f2 | cut -d ')' -f1)" >> $GITHUB_OUTPUT
# The caching we do follows from
# https://stackoverflow.com/questions/59127258/how-can-i-use-pip-cache-in-github-actions
- uses: actions/cache@v2
id: cache-pip
with:
path: ~/.cache/pip
key: ${{ runner.os }}-venv-${{ hashFiles('**/requirements*.txt') }}-classiq-${{steps.classiq-version.outputs.LATEST_CLASSIQ_VERSION}}
restore-keys: |
${{ runner.os }}-venv-
- name: Install dependencies
if: steps.cache-pip.outputs.cache-hit != 'true'
run: |
Expand Down

0 comments on commit 982f431

Please sign in to comment.