Skip to content

Commit

Permalink
test again.
Browse files Browse the repository at this point in the history
  • Loading branch information
janiversen committed Jul 14, 2023
1 parent b80e61e commit b690443
Showing 1 changed file with 4 additions and 5 deletions.
9 changes: 4 additions & 5 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -36,23 +36,22 @@ jobs:
id: cacheVenv
uses: actions/cache@v3
with:
path: ./.venv/
path: ./venv/
key: ${{ runner.os }}-${{ steps.setupPython.outputs.python-version }}-venv-${{ hashFiles('requirements.txt') }}
restore-keys: |
${{ runner.os }}-${{ steps.setupPython.outputs.python-version }}-venv-
- name: Install requirements
if: steps.cacheVenv.outputs.cache-hit != 'true'
run: |
python -m venv ./.venv
python -m venv ./venv
source ./.venv/bin/activate
pip install -U -e . -r requirements.txt
- name: Activate venv
if: steps.cacheVenv.outputs.cache-hit == 'true'
run: |
source ./.venv/bin/activate
pip install -U -e .
source ./venv/bin/activate
pip install -U -e .
- name: codespell
run: codespell
Expand Down

0 comments on commit b690443

Please sign in to comment.