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 28
28
- name : 📄 Install dependencies
29
29
run : poetry install --no-interaction --no-root
30
30
31
- - name : ✅ Run tests
32
- run : poetry run pytest -v
33
-
34
31
- name : 🧼 Check formatting
35
32
run : |
36
33
pip install black
40
37
run : |
41
38
pip install ruff
42
39
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
7
7
RUN pip install --no-cache-dir poetry
8
8
COPY pyproject.toml poetry.lock ./
9
9
RUN poetry config virtualenvs.create false \
10
- && poetry install --no-root --only main
10
+ && poetry install --no-root --only main
11
11
12
12
FROM python:3.13-slim
13
13
LABEL maintainer=
"Simone Locci <[email protected] >"
14
14
15
- ENV PYTHONDONTWRITEBYTECODE=1 \
16
- PYTHONUNBUFFERED=1
15
+ ENV PYTHONDONTWRITEBYTECODE=1
16
+ ENV PYTHONUNBUFFERED=1
17
17
18
18
WORKDIR /app
19
19
COPY --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