Skip to content

Bump boto3 from 1.40.69 to 1.40.70 #209

Bump boto3 from 1.40.69 to 1.40.70

Bump boto3 from 1.40.69 to 1.40.70 #209

Workflow file for this run

# .github/workflows/test.yml
name: Backend Tests
on:
push:
branches: [main]
pull_request:
branches: [main]
jobs:
uv-example:
name: Run tests with uv
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v4
- name: Install system dependencies
run: |
sudo apt-get update
sudo apt-get install -y ocrmypdf tesseract-ocr-deu tesseract-ocr-eng
- name: Install uv
uses: astral-sh/setup-uv@v5
with:
enable-cache: true
cache-dependency-glob: "uv.lock"
- name: Install dependencies
run: uv sync --locked --all-extras --dev
- name: Create temporary local directory
run: mkdir -p test_local_storage
- name: Run tests
run: ENV_PATH=backend/tests/.env uv run pytest