Skip to content

fix: route delete_namespace to /admin-api/namespaces/{id} (#37) #139

fix: route delete_namespace to /admin-api/namespaces/{id} (#37)

fix: route delete_namespace to /admin-api/namespaces/{id} (#37) #139

Workflow file for this run

name: CI
on:
push:
branches: [ master ]
pull_request:
branches: [ master ]
jobs:
test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Set up Python
uses: actions/setup-python@v4
with:
python-version: "3.11"
- name: Install Rust
uses: actions-rs/toolchain@v1
with:
toolchain: stable
override: true
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install maturin
pip install merobox
pip install -e ".[dev]"
- name: Check code formatting with Black
run: |
black --check .
- name: Run tests
run: |
pytest tests/ -v --tb=short