feat: modular architecture, memory-safe concurrency, and OOM protection #3
This file contains hidden or 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: OOM Proof Test | |
| on: | |
| push: | |
| branches: [main] | |
| paths: | |
| - 's3proxy/**' | |
| - 'tests/**' | |
| workflow_dispatch: | |
| jobs: | |
| oom-test: | |
| runs-on: ubuntu-latest | |
| timeout-minutes: 20 | |
| steps: | |
| - uses: actions/checkout@v6 | |
| - name: Set up Python | |
| uses: actions/setup-python@v6 | |
| with: | |
| python-version: '3.14' | |
| cache: 'pip' | |
| - name: Install uv | |
| run: pip install uv | |
| - name: Install dependencies | |
| run: uv sync --extra dev | |
| - name: OOM proof test (256MB container) | |
| run: make test-oom |