fix: handle InMemoryDatabase find_schemas latest when no versions available for subject #1032
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: Smoke test Docker image | |
on: | |
pull_request: | |
push: | |
branches: [ main ] | |
jobs: | |
smoke-test-container: | |
runs-on: ubuntu-latest | |
env: | |
BUILDKIT_PROGRESS: plain | |
steps: | |
- name: Checkout repository | |
uses: actions/checkout@v3 | |
- name: Build karapace/version.py | |
run: python version.py | |
- name: Build and start services | |
run: docker compose --file=container/compose.yml up --build --wait --detach | |
- name: Smoke test registry | |
run: bin/smoke-test-registry.sh | |
- name: Smoke test REST proxy | |
run: bin/smoke-test-rest.sh |