Skip to content

Add support for list, describe, and delete namespaces in grpc #90

Add support for list, describe, and delete namespaces in grpc

Add support for list, describe, and delete namespaces in grpc #90

Workflow file for this run

name: Testing (PR)
on:
pull_request:
paths-ignore:
- 'docs/**'
- '*.md'
- '*.rst'
- '*.txt'
- '*.html'
- '*.css'
- '*.js'
- '*.png'
- '*.jpg'
- '*.jpeg'
- '*.gif'
- '*.svg'
- '*.example'
workflow_dispatch: {}
permissions: {}
concurrency:
group: 'ci-${{ github.workflow }}-${{ github.ref }}'
cancel-in-progress: true
jobs:
linting:
uses: './.github/workflows/testing-lint.yaml'
unit-tests:
uses: './.github/workflows/testing-unit.yaml'
secrets: inherit
with:
python_versions_json: '["3.9"]'
create-project:
uses: './.github/workflows/project-setup.yaml'
secrets: inherit
needs:
- unit-tests
integration-tests:
uses: './.github/workflows/testing-integration.yaml'
secrets: inherit
needs:
- unit-tests
- create-project
with:
encrypted_project_api_key: ${{ needs.create-project.outputs.encrypted_project_api_key }}
python_versions_json: '["3.13", "3.9"]'
cleanup-project:
if: ${{ always() }}
needs:
- create-project
- integration-tests
uses: './.github/workflows/project-cleanup.yaml'
secrets: inherit
with:
project_id: ${{ needs.create-project.outputs.project_id }}
encrypted_project_api_key: ${{ needs.create-project.outputs.encrypted_project_api_key }}