File tree 4 files changed +10
-1
lines changed
4 files changed +10
-1
lines changed Original file line number Diff line number Diff line change 61
61
ruff check
62
62
ruff format --check
63
63
64
+ - name : Validate pyproject.toml
65
+ run : |
66
+ python -m pip install validate-pyproject[all]
67
+ python -m validate_pyproject pyproject.toml
68
+
64
69
conda-dev-test :
65
70
name : Conda Setup & Code Coverage
66
71
runs-on : ubuntu-latest
Original file line number Diff line number Diff line change @@ -8,4 +8,6 @@ ruff check
8
8
code=$? ; test $code -eq 0 || exitCode=$code
9
9
ruff format --check
10
10
code=$? ; test $code -eq 0 || exitCode=$code
11
+ validate-pyproject pyproject.toml
12
+ code=$? ; test $code -eq 0 || exitCode=$code
11
13
exit $exitCode
Original file line number Diff line number Diff line change @@ -33,6 +33,7 @@ dependencies:
33
33
- python-build
34
34
- ruff
35
35
- toml
36
+ - validate-pyproject
36
37
# Project from source
37
38
- pip
38
39
- pip :
Original file line number Diff line number Diff line change @@ -47,7 +47,8 @@ dev = [
47
47
" numpy" ,
48
48
" pandas" ,
49
49
" ruff" ,
50
- " toml"
50
+ " toml" ,
51
+ " validate-pyproject[all]"
51
52
]
52
53
53
54
[project .urls ]
You can’t perform that action at this time.
0 commit comments