Skip to content

Commit 85bfeb9

Browse files
authored
chore: align structure and conventions across templates (#6)
1 parent 68a3313 commit 85bfeb9

File tree

2 files changed

+6
-6
lines changed

2 files changed

+6
-6
lines changed

.github/workflows/python.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -28,9 +28,6 @@ jobs:
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
@@ -40,3 +37,6 @@ jobs:
4037
run: |
4138
pip install ruff
4239
ruff check .
40+
41+
- name: ✅ Run tests
42+
run: poetry run pytest -v

Dockerfile

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -7,13 +7,13 @@ WORKDIR /build
77
RUN pip install --no-cache-dir poetry
88
COPY pyproject.toml poetry.lock ./
99
RUN poetry config virtualenvs.create false \
10-
&& poetry install --no-root --only main
10+
&& poetry install --no-root --only main
1111

1212
FROM python:3.13-slim
1313
LABEL maintainer="Simone Locci <[email protected]>"
1414

15-
ENV PYTHONDONTWRITEBYTECODE=1 \
16-
PYTHONUNBUFFERED=1
15+
ENV PYTHONDONTWRITEBYTECODE=1
16+
ENV PYTHONUNBUFFERED=1
1717

1818
WORKDIR /app
1919
COPY --from=builder /usr/local/lib/python3.13/site-packages /usr/local/lib/python3.13/site-packages

0 commit comments

Comments
 (0)