Skip to content

Commit 75a142b

Browse files
committed
feat: CIジョブ名を小文字に統一し、pytestの設定を追加
1 parent d72d84c commit 75a142b

File tree

2 files changed

+8
-4
lines changed

2 files changed

+8
-4
lines changed

.github/workflows/ci.yaml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ jobs:
3333
run: uv cache prune --ci
3434

3535
ruff-format:
36-
name: Ruff format check
36+
name: ruff-format
3737
needs: setup
3838
runs-on: ubuntu-latest
3939
steps:
@@ -49,7 +49,7 @@ jobs:
4949
run: uv run ruff format --check .
5050

5151
ruff-lint:
52-
name: Ruff lint check
52+
name: ruff-lint
5353
needs: setup
5454
runs-on: ubuntu-latest
5555
steps:
@@ -65,7 +65,7 @@ jobs:
6565
run: uv run ruff check --output-format=github .
6666

6767
mypy-type-check:
68-
name: MyPy type check
68+
name: mypy-type-check
6969
needs: setup
7070
runs-on: ubuntu-latest
7171
steps:
@@ -81,7 +81,7 @@ jobs:
8181
run: uv run --frozen mypy .
8282

8383
pytest:
84-
name: PyTest
84+
name: pytest
8585
needs: setup
8686
runs-on: ubuntu-latest
8787
steps:

pyproject.toml

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -135,5 +135,9 @@ check_untyped_defs = true
135135
warn_redundant_casts = true
136136
exclude = ["docs"]
137137

138+
[tool.pytest.ini_options]
139+
pythonpath = ["src"]
140+
testpaths = ["tests"]
141+
138142
[tool.uv.sources]
139143
rcrscore = { git = "https://github.com/adf-python/rcrs-core-python" , tag = "v0.2.0" }

0 commit comments

Comments
 (0)