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 b11e2eb commit 7e8b090
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 @@ -85,21 +85,6 @@ jobs:
with:
python-version: "3.11"

- name: Get latest classiq version
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 7e8b090

Please sign in to comment.