feature/update-build-deps (#3)
Some checks failed
CI / Static Analysis (pre-commit) (push) Successful in 1m9s
CI / Tests (push) Successful in 1m2s
CI / Build and push image (push) Failing after 55s

Reviewed-on: http://brosner.dev/brosner/teufa/pulls/3
This commit is contained in:
Brian Rosner 2025-05-26 02:09:50 +00:00
parent 67f5ff7c4c
commit 5032064989
2 changed files with 5 additions and 5 deletions

View File

@ -45,7 +45,7 @@ jobs:
- name: Install uv
uses: astral-sh/setup-uv@v5
with:
version: "0.7.3"
version: "0.7.8"
- name: Install dependencies
run: uv sync --group=test
- name: Run pytest
@ -53,7 +53,7 @@ jobs:
env:
DATABASE_URL: postgresql+psycopg://postgres:postgres@postgres:5432/postgres
- name: Upload coverage reports to Codecov
uses: codecov/codecov-action@v4.4.1
uses: codecov/codecov-action@v5
with:
token: ${{ secrets.CODECOV_TOKEN }}
- name: Upload test results to Codecov

View File

@ -27,7 +27,7 @@ RUN apt-get update && \
python3-dev \
&& rm -rf /var/lib/apt/lists/*
COPY --from=ghcr.io/astral-sh/uv:0.6 /uv /uvx /bin/
COPY --from=ghcr.io/astral-sh/uv:0.7 /uv /uvx /bin/
WORKDIR $APP_HOME
COPY . .
@ -39,7 +39,7 @@ RUN uv sync --frozen
FROM base AS dev
COPY --from=builder-base $APP_HOME $APP_HOME
COPY --from=ghcr.io/astral-sh/uv:0.6 /uv /uvx /bin/
COPY --from=ghcr.io/astral-sh/uv:0.7 /uv /uvx /bin/
WORKDIR $APP_HOME
@ -54,7 +54,7 @@ CMD ["teufa", "server", "--dev"]
FROM base AS ci
COPY --from=builder-base $APP_HOME $APP_HOME
COPY --from=ghcr.io/astral-sh/uv:0.6 /uv /uvx /bin/
COPY --from=ghcr.io/astral-sh/uv:0.7 /uv /uvx /bin/
WORKDIR $APP_HOME