Skip to content

Commit

Permalink
How and why and how?
Browse files Browse the repository at this point in the history
  • Loading branch information
jmchilton committed Dec 11, 2022
1 parent af0d9c4 commit 07557e4
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions .github/workflows/toolshed.yaml
Expand Up @@ -33,7 +33,7 @@ jobs:
steps:
- uses: actions/checkout@v3
with:
path: 'galaxy root'
path: 'galaxy_root'
- uses: actions/setup-python@v4
with:
python-version: ${{ matrix.python-version }}
Expand All @@ -46,17 +46,17 @@ jobs:
id: pip-cache
with:
path: ~/.cache/pip
key: pip-cache-${{ matrix.python-version }}-${{ hashFiles('galaxy root/requirements.txt') }}
key: pip-cache-${{ matrix.python-version }}-${{ hashFiles('galaxy_root/requirements.txt') }}
- name: Cache galaxy venv
uses: actions/cache@v3
with:
path: 'galaxy root/.venv'
key: gxy-venv-${{ runner.os }}-${{ steps.full-python-version.outputs.version }}-${{ hashFiles('galaxy root/requirements.txt') }}-toolshed
path: 'galaxy_root/.venv'
key: gxy-venv-${{ runner.os }}-${{ steps.full-python-version.outputs.version }}-${{ hashFiles('galaxy_root/requirements.txt') }}-toolshed
- name: Run tests
run: './run_tests.sh -toolshed'
working-directory: 'galaxy root'
working-directory: 'galaxy_root'
- uses: actions/upload-artifact@v3
if: failure()
with:
name: Toolshed test results (${{ matrix.python-version }})
path: 'galaxy root/run_toolshed_tests.html'
path: 'galaxy_root/run_toolshed_tests.html'

0 comments on commit 07557e4

Please sign in to comment.