Add a default=False "recurse" parameter to namespace deletion. #198
Workflow file for this run
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
name: "Test run" | |
on: [ 'pull_request' ] | |
jobs: | |
test_run: | |
runs-on: ubuntu-latest | |
strategy: | |
matrix: | |
python-version: ['3.8', '3.9', '3.10', '3.11', '3.12'] | |
steps: | |
- uses: actions/checkout@v2 | |
- uses: actions/setup-python@v2 | |
with: | |
python-version: ${{ matrix.python-version }} | |
- name: install dependencies | |
run: pip install --user --upgrade --editable . | |
- name: Galaxykit help is running | |
run: galaxykit -u admin -p admin --help | |
- name: Galaxykit greet is running | |
run: galaxykit -u admin -p admin greet hello |