File tree 2 files changed +17
-11
lines changed
2 files changed +17
-11
lines changed Original file line number Diff line number Diff line change 11
11
- cron : " 0 0 * * 0"
12
12
13
13
jobs :
14
- python-exhaustive :
14
+ test-py-cov :
15
15
uses : ./.github/workflows/.hatch-run.yml
16
16
with :
17
17
job-name : " python-{0}"
18
- hatch-run : " check-py"
19
- python-environments :
18
+ hatch-run : " test-py"
19
+ lint-py :
20
+ uses : ./.github/workflows/.hatch-run.yml
21
+ with :
22
+ job-name : " python-{0}"
23
+ hatch-run : " lint-py"
24
+ test-py-matrix :
20
25
uses : ./.github/workflows/.hatch-run.yml
21
26
with :
22
27
job-name : " python-{0} {1}"
23
- hatch-run : " check -py --no-cov"
28
+ hatch-run : " test -py --no-cov"
24
29
runs-on-array : ' ["ubuntu-latest", "macos-latest", "windows-latest"]'
25
30
python-version-array : ' ["3.9", "3.10", "3.11"]'
26
- docs :
31
+ test- docs :
27
32
uses : ./.github/workflows/.hatch-run.yml
28
33
with :
29
34
job-name : " python-{0}"
30
35
hatch-run : " test-docs"
31
- javascript :
36
+ test-js :
37
+ uses : ./.github/workflows/.hatch-run.yml
38
+ with :
39
+ job-name : " {1}"
40
+ hatch-run : " test-js"
41
+ lint-js :
32
42
uses : ./.github/workflows/.hatch-run.yml
33
43
with :
34
44
job-name : " {1}"
35
- hatch-run : " test-js lint-js"
45
+ hatch-run : " lint-js"
Original file line number Diff line number Diff line change @@ -14,9 +14,6 @@ post-install-commands = ["invoke env"]
14
14
[tool .hatch .envs .default .scripts ]
15
15
publish = " invoke publish {args}"
16
16
17
- check-py = " invoke test-py {args} lint-py"
18
- check-js = " invoke test-js lint-js"
19
-
20
17
lint-py = " invoke lint-py {args}"
21
18
lint-js = " invoke lint-js {args}"
22
19
@@ -29,7 +26,6 @@ test-docs = "invoke test-docs"
29
26
[tool .black ]
30
27
target-version = [" py39" ]
31
28
line-length = 88
32
- skip-string-normalization = true
33
29
34
30
# --- Ruff -----------------------------------------------------------------------------
35
31
You can’t perform that action at this time.
0 commit comments