-
Notifications
You must be signed in to change notification settings - Fork 1k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'dev' into name-validation
- Loading branch information
Showing
1,090 changed files
with
50,802 additions
and
24,580 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,44 @@ | ||
name: Test Galaxy packages for Pulsar | ||
on: | ||
push: | ||
paths-ignore: | ||
- 'client/**' | ||
- 'doc/**' | ||
- 'lib/galaxy_test/selenium/**' | ||
pull_request: | ||
paths-ignore: | ||
- 'client/**' | ||
- 'doc/**' | ||
- 'lib/galaxy_test/selenium/**' | ||
concurrency: | ||
group: ${{ github.workflow }}-${{ github.ref }} | ||
cancel-in-progress: true | ||
jobs: | ||
test: | ||
name: Test | ||
runs-on: ubuntu-latest | ||
strategy: | ||
fail-fast: false | ||
matrix: | ||
python-version: ['3.7'] | ||
steps: | ||
- uses: actions/checkout@v3 | ||
with: | ||
path: 'galaxy root' | ||
- uses: actions/setup-python@v4 | ||
with: | ||
python-version: ${{ matrix.python-version }} | ||
- name: Cache pip dir | ||
uses: actions/cache@v3 | ||
with: | ||
path: ~/.cache/pip | ||
key: pip-cache-${{ matrix.python-version }}-${{ hashFiles('galaxy root/requirements.txt') }} | ||
- name: Install Apptainer's singularity | ||
uses: eWaterCycle/setup-apptainer@v2 | ||
- name: Install ffmpeg | ||
run: sudo apt-get update && sudo apt-get -y install ffmpeg | ||
- name: Install tox | ||
run: pip install tox | ||
- name: Run tests | ||
run: tox -e test_galaxy_packages_for_pulsar | ||
working-directory: 'galaxy root' |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,41 @@ | ||
{ | ||
"shedcomp": { | ||
"prefix": "shed_component", | ||
"body": [ | ||
"<script setup lang=\"ts\">", | ||
"\t$0", | ||
"</script>", | ||
"<template>", | ||
"</template>" | ||
], | ||
"description": "outline of a tool shed component" | ||
}, | ||
"shedpage": { | ||
"prefix": "shed_page", | ||
"body": [ | ||
"<script setup lang=\"ts\">", | ||
"import PageContainer from \"@/components/PageContainer.vue\"", | ||
"</script>", | ||
"<template>", | ||
" <page-container>", | ||
" $0", | ||
" </page-container>", | ||
"</template>" | ||
], | ||
"description": "outline of a tool shed page" | ||
}, | ||
"shedfetcher": { | ||
"prefix": "shed_fetcher", | ||
"body": [ | ||
"import { fetcher } from \"@/schema\"", | ||
"const fetcher = fetcher.path(\"$1\").method(\"get\").create()" | ||
], | ||
"description": "Import shed fetcher and instantiate with a path" | ||
}, | ||
"shedrouter": { | ||
"prefix": "shed_router", | ||
"body": [ | ||
"import router from \"@/router\"" | ||
] | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.