File tree Expand file tree Collapse file tree 2 files changed +6
-6
lines changed Expand file tree Collapse file tree 2 files changed +6
-6
lines changed Original file line number Diff line number Diff line change 2828 - name : 📄 Install dependencies
2929 run : poetry install --no-interaction --no-root
3030
31- - name : ✅ Run tests
32- run : poetry run pytest -v
33-
3431 - name : 🧼 Check formatting
3532 run : |
3633 pip install black
4037 run : |
4138 pip install ruff
4239 ruff check .
40+
41+ - name : ✅ Run tests
42+ run : poetry run pytest -v
Original file line number Diff line number Diff line change @@ -7,13 +7,13 @@ WORKDIR /build
77RUN pip install --no-cache-dir poetry
88COPY pyproject.toml poetry.lock ./
99RUN poetry config virtualenvs.create false \
10- && poetry install --no-root --only main
10+ && poetry install --no-root --only main
1111
1212FROM python:3.13-slim
1313LABEL maintainer="Simone Locci <simonelocci88@gmail.com>"
1414
15- ENV PYTHONDONTWRITEBYTECODE=1 \
16- PYTHONUNBUFFERED=1
15+ ENV PYTHONDONTWRITEBYTECODE=1
16+ ENV PYTHONUNBUFFERED=1
1717
1818WORKDIR /app
1919COPY --from=builder /usr/local/lib/python3.13/site-packages /usr/local/lib/python3.13/site-packages
You can’t perform that action at this time.
0 commit comments