Skip to content

Commit ac5b284

Browse files
author
matdev83
committed
Fix CI
1 parent 3c52d85 commit ac5b284

File tree

3 files changed

+24
-19
lines changed

3 files changed

+24
-19
lines changed

.github/workflows/architecture-check.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -11,10 +11,10 @@ jobs:
1111
runs-on: ubuntu-latest
1212

1313
steps:
14-
- uses: actions/checkout@v3
14+
- uses: actions/checkout@v4
1515

1616
- name: Set up Python
17-
uses: actions/setup-python@v4
17+
uses: actions/setup-python@v5
1818
with:
1919
python-version: '3.10'
2020

.github/workflows/ci.yml

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -14,13 +14,13 @@ jobs:
1414
runs-on: ubuntu-latest
1515
strategy:
1616
matrix:
17-
python-version: [3.10]
17+
python-version: ['3.10']
1818

1919
steps:
20-
- uses: actions/checkout@v3
20+
- uses: actions/checkout@v4
2121

2222
- name: Set up Python ${{ matrix.python-version }}
23-
uses: actions/setup-python@v4
23+
uses: actions/setup-python@v5
2424
with:
2525
python-version: ${{ matrix.python-version }}
2626
cache: 'pip'
@@ -59,13 +59,13 @@ jobs:
5959
runs-on: ubuntu-latest
6060
strategy:
6161
matrix:
62-
python-version: [3.10]
62+
python-version: ['3.10']
6363

6464
steps:
65-
- uses: actions/checkout@v3
65+
- uses: actions/checkout@v4
6666

6767
- name: Set up Python ${{ matrix.python-version }}
68-
uses: actions/setup-python@v4
68+
uses: actions/setup-python@v5
6969
with:
7070
python-version: ${{ matrix.python-version }}
7171
cache: 'pip'
@@ -89,10 +89,10 @@ jobs:
8989
check-docs:
9090
runs-on: ubuntu-latest
9191
steps:
92-
- uses: actions/checkout@v3
92+
- uses: actions/checkout@v4
9393

9494
- name: Set up Python
95-
uses: actions/setup-python@v4
95+
uses: actions/setup-python@v5
9696
with:
9797
python-version: '3.10'
9898

pyproject.toml

Lines changed: 14 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -71,12 +71,12 @@ dev = [
7171
"radon",
7272
]
7373

74-
[build-system]
75-
requires = ["setuptools>=61.0"]
76-
build-backend = "setuptools.build_meta"
77-
78-
[tool.setuptools]
79-
package-dir = {"" = "src"}
74+
[build-system]
75+
requires = ["setuptools>=61.0"]
76+
build-backend = "setuptools.build_meta"
77+
78+
[tool.setuptools]
79+
package-dir = {"" = "src"}
8080

8181
[tool.pytest.ini_options]
8282
pythonpath = ["src", "tests"]
@@ -89,7 +89,7 @@ junit_duration_report = "call"
8989
# To run backend tests, use: pytest -m backend
9090
# To run DI tests, use: pytest -m di
9191
# To run tests without global mock, use: pytest -m no_global_mock
92-
markers = [
92+
markers = [
9393
"integration: marks tests as integration tests (deselect with '-m \"not integration\"')",
9494
"unit: marks tests as unit tests",
9595
"network: marks tests that require network access (deselect with '-m \"not network\"')",
@@ -104,6 +104,11 @@ markers = [
104104
"di: marks tests that use the dependency injection architecture",
105105
"loop_detection: marks tests related to loop detection",
106106
"multimodal: marks tests related to multimodal content",
107-
]
108-
107+
]
108+
109+
110+
[tool.mdformat]
111+
# Disable automatic line wrapping for Markdown files to match CI expectations
112+
wrap = 0
113+
109114

0 commit comments

Comments
 (0)