Skip to content

Commit 60281e0

Browse files
authored
v1.0.1
2 parents 66572dc + fc9ddee commit 60281e0

4 files changed

+135
-107
lines changed

.github/workflows/PublishCoverageResults.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -199,7 +199,7 @@ jobs:
199199
- name: 📊 Publish code coverage at CodeCov
200200
if: inputs.CodeCov == true
201201
continue-on-error: true
202-
uses: codecov/codecov-action@v3
202+
uses: codecov/codecov-action@v4
203203
with:
204204
files: ${{ steps.getVariables.outputs.coverage_report_xml }}
205205
flags: unittests

.github/workflows/_Checking_ArtifactCleanup.yml

+2-2
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ on:
66

77
jobs:
88
Params:
9-
uses: pyTooling/Actions/.github/workflows/Parameters.yml@dev
9+
uses: pyTooling/Actions/.github/workflows/Parameters.yml@r1
1010
with:
1111
name: Example
1212
python_version_list: "3.10 3.11"
@@ -50,7 +50,7 @@ jobs:
5050
retention-days: 1
5151

5252
ArtifactCleanUp:
53-
uses: pyTooling/Actions/.github/workflows/ArtifactCleanUp.yml@dev
53+
uses: pyTooling/Actions/.github/workflows/ArtifactCleanUp.yml@r1
5454
needs:
5555
- Params
5656
- Testing

.github/workflows/_Checking_Parameters.yml

+117-89
Original file line numberDiff line numberDiff line change
@@ -6,48 +6,48 @@ on:
66

77
jobs:
88
Params_Default:
9-
uses: pyTooling/Actions/.github/workflows/Parameters.yml@dev
9+
uses: pyTooling/Actions/.github/workflows/Parameters.yml@r1
1010
with:
1111
name: Example
1212

1313
Params_PythonVersions:
14-
uses: pyTooling/Actions/.github/workflows/Parameters.yml@dev
14+
uses: pyTooling/Actions/.github/workflows/Parameters.yml@r1
1515
with:
1616
name: Example
1717
python_version_list: "3.9 3.10 pypy-3.8 pypy-3.9"
1818

1919
Params_Systems:
20-
uses: pyTooling/Actions/.github/workflows/Parameters.yml@dev
20+
uses: pyTooling/Actions/.github/workflows/Parameters.yml@r1
2121
with:
2222
name: Example
2323
system_list: "windows mingw32 mingw64"
2424

2525
Params_Include:
26-
uses: pyTooling/Actions/.github/workflows/Parameters.yml@dev
26+
uses: pyTooling/Actions/.github/workflows/Parameters.yml@r1
2727
with:
2828
name: Example
2929
python_version_list: "3.10"
3030
system_list: "ubuntu windows macos"
3131
include_list: "ubuntu:3.11 ubuntu:3.12"
3232

3333
Params_Exclude:
34-
uses: pyTooling/Actions/.github/workflows/Parameters.yml@dev
34+
uses: pyTooling/Actions/.github/workflows/Parameters.yml@r1
3535
with:
3636
name: Example
3737
python_version_list: "3.10"
3838
system_list: "ubuntu windows macos"
3939
exclude_list: "windows:3.10 windows:3.11"
4040

4141
Params_Disable:
42-
uses: pyTooling/Actions/.github/workflows/Parameters.yml@dev
42+
uses: pyTooling/Actions/.github/workflows/Parameters.yml@r1
4343
with:
4444
name: Example
4545
python_version_list: "3.10"
4646
system_list: "ubuntu windows macos"
4747
disable_list: "windows:3.10 windows:3.11"
4848

4949
Params_All:
50-
uses: pyTooling/Actions/.github/workflows/Parameters.yml@dev
50+
uses: pyTooling/Actions/.github/workflows/Parameters.yml@r1
5151
with:
5252
name: Example
5353
python_version_list: "3.10 3.11"
@@ -80,22 +80,26 @@ jobs:
8080
8181
from pyTooling.Common import zipdicts
8282
83-
expectedPythonVersion = "3.11"
84-
expectedPythons = ["3.8", "3.9", "3.10", "3.11"]
83+
expectedPythonVersion = "3.12"
84+
expectedPythons = ["3.8", "3.9", "3.10", "3.11", "3.12"]
8585
expectedSystems = ["ubuntu", "windows", "macos"]
86-
expectedJobs = [f"{system}:{python}" for system in expectedSystems for python in expectedPythons] + ["mingw64:3.10"]
86+
expectedJobs = [f"{system}:{python}" for system in expectedSystems for python in expectedPythons] + ["mingw64:3.11", "ucrt64:3.11"]
8787
expectedName = "Example"
8888
expectedArtifacts = {
89-
"unittesting_xml": f"{expectedName}-UnitTestReportSummary-XML",
90-
"perftesting_xml": f"{expectedName}-PerformanceTestReportSummary-XML",
91-
"benchtesting_xml": f"{expectedName}-BenchmarkTestReportSummary-XML",
92-
"apptesting_xml": f"{expectedName}-ApplicationTestReportSummary-XML",
93-
"codecoverage_xml": f"{expectedName}-CodeCoverage-XML",
94-
"codecoverage_html": f"{expectedName}-CodeCoverage-HTML",
95-
"statictyping_html": f"{expectedName}-StaticTyping-HTML",
96-
"package_all": f"{expectedName}-Packages",
97-
"documentation_pdf": f"{expectedName}-Documentation-PDF",
98-
"documentation_html": f"{expectedName}-Documentation-HTML",
89+
"unittesting_xml": f"{expectedName}-UnitTestReportSummary-XML",
90+
"unittesting_html": f"{expectedName}-UnitTestReportSummary-HTML",
91+
"perftesting_xml": f"{expectedName}-PerformanceTestReportSummary-XML",
92+
"benchtesting_xml": f"{expectedName}-BenchmarkTestReportSummary-XML",
93+
"apptesting_xml": f"{expectedName}-ApplicationTestReportSummary-XML",
94+
"codecoverage_sqlite": f"{expectedName}-CodeCoverage-SQLite",
95+
"codecoverage_xml": f"{expectedName}-CodeCoverage-XML",
96+
"codecoverage_json": f"{expectedName}-CodeCoverage-JSON",
97+
"codecoverage_html": f"{expectedName}-CodeCoverage-HTML",
98+
"statictyping_html": f"{expectedName}-StaticTyping-HTML",
99+
"package_all": f"{expectedName}-Packages",
100+
"documentation_html": f"{expectedName}-Documentation-HTML",
101+
"documentation_latex": f"{expectedName}-Documentation-LaTeX",
102+
"documentation_pdf": f"{expectedName}-Documentation-PDF",
99103
}
100104
101105
actualPythonVersion = """${{ needs.Params_Default.outputs.python_version }}"""
@@ -132,22 +136,26 @@ jobs:
132136
133137
from pyTooling.Common import zipdicts
134138
135-
expectedPythonVersion = "3.11"
139+
expectedPythonVersion = "3.12"
136140
expectedPythons = ["3.9", "3.10", "pypy-3.8", "pypy-3.9"]
137141
expectedSystems = ["ubuntu", "windows", "macos"]
138-
expectedJobs = [f"{system}:{python}" for system in expectedSystems for python in expectedPythons] + ["mingw64:3.10"]
142+
expectedJobs = [f"{system}:{python}" for system in expectedSystems for python in expectedPythons] + ["mingw64:3.11", "ucrt64:3.11"]
139143
expectedName = "Example"
140144
expectedArtifacts = {
141-
"unittesting_xml": f"{expectedName}-UnitTestReportSummary-XML",
142-
"perftesting_xml": f"{expectedName}-PerformanceTestReportSummary-XML",
143-
"benchtesting_xml": f"{expectedName}-BenchmarkTestReportSummary-XML",
144-
"apptesting_xml": f"{expectedName}-ApplicationTestReportSummary-XML",
145-
"codecoverage_xml": f"{expectedName}-CodeCoverage-XML",
146-
"codecoverage_html": f"{expectedName}-CodeCoverage-HTML",
147-
"statictyping_html": f"{expectedName}-StaticTyping-HTML",
148-
"package_all": f"{expectedName}-Packages",
149-
"documentation_pdf": f"{expectedName}-Documentation-PDF",
150-
"documentation_html": f"{expectedName}-Documentation-HTML",
145+
"unittesting_xml": f"{expectedName}-UnitTestReportSummary-XML",
146+
"unittesting_html": f"{expectedName}-UnitTestReportSummary-HTML",
147+
"perftesting_xml": f"{expectedName}-PerformanceTestReportSummary-XML",
148+
"benchtesting_xml": f"{expectedName}-BenchmarkTestReportSummary-XML",
149+
"apptesting_xml": f"{expectedName}-ApplicationTestReportSummary-XML",
150+
"codecoverage_sqlite": f"{expectedName}-CodeCoverage-SQLite",
151+
"codecoverage_xml": f"{expectedName}-CodeCoverage-XML",
152+
"codecoverage_json": f"{expectedName}-CodeCoverage-JSON",
153+
"codecoverage_html": f"{expectedName}-CodeCoverage-HTML",
154+
"statictyping_html": f"{expectedName}-StaticTyping-HTML",
155+
"package_all": f"{expectedName}-Packages",
156+
"documentation_html": f"{expectedName}-Documentation-HTML",
157+
"documentation_latex": f"{expectedName}-Documentation-LaTeX",
158+
"documentation_pdf": f"{expectedName}-Documentation-PDF",
151159
}
152160
153161
actualPythonVersion = """${{ needs.Params_PythonVersions.outputs.python_version }}"""
@@ -184,22 +192,26 @@ jobs:
184192
185193
from pyTooling.Common import zipdicts
186194
187-
expectedPythonVersion = "3.11"
188-
expectedPythons = ["3.8", "3.9", "3.10", "3.11"]
195+
expectedPythonVersion = "3.12"
196+
expectedPythons = ["3.8", "3.9", "3.10", "3.11", "3.12"]
189197
expectedSystems = ["windows"]
190-
expectedJobs = [f"{system}:{python}" for system in expectedSystems for python in expectedPythons] + ["mingw32:3.10", "mingw64:3.10"]
198+
expectedJobs = [f"{system}:{python}" for system in expectedSystems for python in expectedPythons] + ["mingw32:3.11", "mingw64:3.11"]
191199
expectedName = "Example"
192200
expectedArtifacts = {
193-
"unittesting_xml": f"{expectedName}-UnitTestReportSummary-XML",
194-
"perftesting_xml": f"{expectedName}-PerformanceTestReportSummary-XML",
195-
"benchtesting_xml": f"{expectedName}-BenchmarkTestReportSummary-XML",
196-
"apptesting_xml": f"{expectedName}-ApplicationTestReportSummary-XML",
197-
"codecoverage_xml": f"{expectedName}-CodeCoverage-XML",
198-
"codecoverage_html": f"{expectedName}-CodeCoverage-HTML",
199-
"statictyping_html": f"{expectedName}-StaticTyping-HTML",
200-
"package_all": f"{expectedName}-Packages",
201-
"documentation_pdf": f"{expectedName}-Documentation-PDF",
202-
"documentation_html": f"{expectedName}-Documentation-HTML",
201+
"unittesting_xml": f"{expectedName}-UnitTestReportSummary-XML",
202+
"unittesting_html": f"{expectedName}-UnitTestReportSummary-HTML",
203+
"perftesting_xml": f"{expectedName}-PerformanceTestReportSummary-XML",
204+
"benchtesting_xml": f"{expectedName}-BenchmarkTestReportSummary-XML",
205+
"apptesting_xml": f"{expectedName}-ApplicationTestReportSummary-XML",
206+
"codecoverage_sqlite": f"{expectedName}-CodeCoverage-SQLite",
207+
"codecoverage_xml": f"{expectedName}-CodeCoverage-XML",
208+
"codecoverage_json": f"{expectedName}-CodeCoverage-JSON",
209+
"codecoverage_html": f"{expectedName}-CodeCoverage-HTML",
210+
"statictyping_html": f"{expectedName}-StaticTyping-HTML",
211+
"package_all": f"{expectedName}-Packages",
212+
"documentation_html": f"{expectedName}-Documentation-HTML",
213+
"documentation_latex": f"{expectedName}-Documentation-LaTeX",
214+
"documentation_pdf": f"{expectedName}-Documentation-PDF",
203215
}
204216
205217
actualPythonVersion = """${{ needs.Params_Systems.outputs.python_version }}"""
@@ -236,22 +248,26 @@ jobs:
236248
237249
from pyTooling.Common import zipdicts
238250
239-
expectedPythonVersion = "3.11"
251+
expectedPythonVersion = "3.12"
240252
expectedPythons = ["3.10"]
241253
expectedSystems = ["ubuntu", "windows", "macos"]
242254
expectedJobs = [f"{system}:{python}" for system in expectedSystems for python in expectedPythons] + ["ubuntu:3.11", "ubuntu:3.12"]
243255
expectedName = "Example"
244256
expectedArtifacts = {
245-
"unittesting_xml": f"{expectedName}-UnitTestReportSummary-XML",
246-
"perftesting_xml": f"{expectedName}-PerformanceTestReportSummary-XML",
247-
"benchtesting_xml": f"{expectedName}-BenchmarkTestReportSummary-XML",
248-
"apptesting_xml": f"{expectedName}-ApplicationTestReportSummary-XML",
249-
"codecoverage_xml": f"{expectedName}-CodeCoverage-XML",
250-
"codecoverage_html": f"{expectedName}-CodeCoverage-HTML",
251-
"statictyping_html": f"{expectedName}-StaticTyping-HTML",
252-
"package_all": f"{expectedName}-Packages",
253-
"documentation_pdf": f"{expectedName}-Documentation-PDF",
254-
"documentation_html": f"{expectedName}-Documentation-HTML",
257+
"unittesting_xml": f"{expectedName}-UnitTestReportSummary-XML",
258+
"unittesting_html": f"{expectedName}-UnitTestReportSummary-HTML",
259+
"perftesting_xml": f"{expectedName}-PerformanceTestReportSummary-XML",
260+
"benchtesting_xml": f"{expectedName}-BenchmarkTestReportSummary-XML",
261+
"apptesting_xml": f"{expectedName}-ApplicationTestReportSummary-XML",
262+
"codecoverage_sqlite": f"{expectedName}-CodeCoverage-SQLite",
263+
"codecoverage_xml": f"{expectedName}-CodeCoverage-XML",
264+
"codecoverage_json": f"{expectedName}-CodeCoverage-JSON",
265+
"codecoverage_html": f"{expectedName}-CodeCoverage-HTML",
266+
"statictyping_html": f"{expectedName}-StaticTyping-HTML",
267+
"package_all": f"{expectedName}-Packages",
268+
"documentation_html": f"{expectedName}-Documentation-HTML",
269+
"documentation_latex": f"{expectedName}-Documentation-LaTeX",
270+
"documentation_pdf": f"{expectedName}-Documentation-PDF",
255271
}
256272
257273
actualPythonVersion = """${{ needs.Params_Include.outputs.python_version }}"""
@@ -288,22 +304,26 @@ jobs:
288304
289305
from pyTooling.Common import zipdicts
290306
291-
expectedPythonVersion = "3.11"
307+
expectedPythonVersion = "3.12"
292308
expectedPythons = ["3.10"]
293309
expectedSystems = ["ubuntu", "macos"]
294310
expectedJobs = [f"{system}:{python}" for system in expectedSystems for python in expectedPythons]
295311
expectedName = "Example"
296312
expectedArtifacts = {
297-
"unittesting_xml": f"{expectedName}-UnitTestReportSummary-XML",
298-
"perftesting_xml": f"{expectedName}-PerformanceTestReportSummary-XML",
299-
"benchtesting_xml": f"{expectedName}-BenchmarkTestReportSummary-XML",
300-
"apptesting_xml": f"{expectedName}-ApplicationTestReportSummary-XML",
301-
"codecoverage_xml": f"{expectedName}-CodeCoverage-XML",
302-
"codecoverage_html": f"{expectedName}-CodeCoverage-HTML",
303-
"statictyping_html": f"{expectedName}-StaticTyping-HTML",
304-
"package_all": f"{expectedName}-Packages",
305-
"documentation_pdf": f"{expectedName}-Documentation-PDF",
306-
"documentation_html": f"{expectedName}-Documentation-HTML",
313+
"unittesting_xml": f"{expectedName}-UnitTestReportSummary-XML",
314+
"unittesting_html": f"{expectedName}-UnitTestReportSummary-HTML",
315+
"perftesting_xml": f"{expectedName}-PerformanceTestReportSummary-XML",
316+
"benchtesting_xml": f"{expectedName}-BenchmarkTestReportSummary-XML",
317+
"apptesting_xml": f"{expectedName}-ApplicationTestReportSummary-XML",
318+
"codecoverage_sqlite": f"{expectedName}-CodeCoverage-SQLite",
319+
"codecoverage_xml": f"{expectedName}-CodeCoverage-XML",
320+
"codecoverage_json": f"{expectedName}-CodeCoverage-JSON",
321+
"codecoverage_html": f"{expectedName}-CodeCoverage-HTML",
322+
"statictyping_html": f"{expectedName}-StaticTyping-HTML",
323+
"package_all": f"{expectedName}-Packages",
324+
"documentation_html": f"{expectedName}-Documentation-HTML",
325+
"documentation_latex": f"{expectedName}-Documentation-LaTeX",
326+
"documentation_pdf": f"{expectedName}-Documentation-PDF",
307327
}
308328
309329
actualPythonVersion = """${{ needs.Params_Exclude.outputs.python_version }}"""
@@ -340,22 +360,26 @@ jobs:
340360
341361
from pyTooling.Common import zipdicts
342362
343-
expectedPythonVersion = "3.11"
363+
expectedPythonVersion = "3.12"
344364
expectedPythons = ["3.10"]
345365
expectedSystems = ["ubuntu", "macos"]
346366
expectedJobs = [f"{system}:{python}" for system in expectedSystems for python in expectedPythons]
347367
expectedName = "Example"
348368
expectedArtifacts = {
349-
"unittesting_xml": f"{expectedName}-UnitTestReportSummary-XML",
350-
"perftesting_xml": f"{expectedName}-PerformanceTestReportSummary-XML",
351-
"benchtesting_xml": f"{expectedName}-BenchmarkTestReportSummary-XML",
352-
"apptesting_xml": f"{expectedName}-ApplicationTestReportSummary-XML",
353-
"codecoverage_xml": f"{expectedName}-CodeCoverage-XML",
354-
"codecoverage_html": f"{expectedName}-CodeCoverage-HTML",
355-
"statictyping_html": f"{expectedName}-StaticTyping-HTML",
356-
"package_all": f"{expectedName}-Packages",
357-
"documentation_pdf": f"{expectedName}-Documentation-PDF",
358-
"documentation_html": f"{expectedName}-Documentation-HTML",
369+
"unittesting_xml": f"{expectedName}-UnitTestReportSummary-XML",
370+
"unittesting_html": f"{expectedName}-UnitTestReportSummary-HTML",
371+
"perftesting_xml": f"{expectedName}-PerformanceTestReportSummary-XML",
372+
"benchtesting_xml": f"{expectedName}-BenchmarkTestReportSummary-XML",
373+
"apptesting_xml": f"{expectedName}-ApplicationTestReportSummary-XML",
374+
"codecoverage_sqlite": f"{expectedName}-CodeCoverage-SQLite",
375+
"codecoverage_xml": f"{expectedName}-CodeCoverage-XML",
376+
"codecoverage_json": f"{expectedName}-CodeCoverage-JSON",
377+
"codecoverage_html": f"{expectedName}-CodeCoverage-HTML",
378+
"statictyping_html": f"{expectedName}-StaticTyping-HTML",
379+
"package_all": f"{expectedName}-Packages",
380+
"documentation_html": f"{expectedName}-Documentation-HTML",
381+
"documentation_latex": f"{expectedName}-Documentation-LaTeX",
382+
"documentation_pdf": f"{expectedName}-Documentation-PDF",
359383
}
360384
361385
actualPythonVersion = """${{ needs.Params_Exclude.outputs.python_version }}"""
@@ -392,22 +416,26 @@ jobs:
392416
393417
from pyTooling.Common import zipdicts
394418
395-
expectedPythonVersion = "3.11"
419+
expectedPythonVersion = "3.12"
396420
expectedPythons = ["3.10", "3.11"]
397421
expectedSystems = ["ubuntu", "windows"]
398422
expectedJobs = [f"{system}:{python}" for system in expectedSystems for python in expectedPythons] + ["windows:3.8", "windows:3.9", "windows:3.12"]
399423
expectedName = "Example"
400424
expectedArtifacts = {
401-
"unittesting_xml": f"{expectedName}-UnitTestReportSummary-XML",
402-
"perftesting_xml": f"{expectedName}-PerformanceTestReportSummary-XML",
403-
"benchtesting_xml": f"{expectedName}-BenchmarkTestReportSummary-XML",
404-
"apptesting_xml": f"{expectedName}-ApplicationTestReportSummary-XML",
405-
"codecoverage_xml": f"{expectedName}-CodeCoverage-XML",
406-
"codecoverage_html": f"{expectedName}-CodeCoverage-HTML",
407-
"statictyping_html": f"{expectedName}-StaticTyping-HTML",
408-
"package_all": f"{expectedName}-Packages",
409-
"documentation_pdf": f"{expectedName}-Documentation-PDF",
410-
"documentation_html": f"{expectedName}-Documentation-HTML",
425+
"unittesting_xml": f"{expectedName}-UnitTestReportSummary-XML",
426+
"unittesting_html": f"{expectedName}-UnitTestReportSummary-HTML",
427+
"perftesting_xml": f"{expectedName}-PerformanceTestReportSummary-XML",
428+
"benchtesting_xml": f"{expectedName}-BenchmarkTestReportSummary-XML",
429+
"apptesting_xml": f"{expectedName}-ApplicationTestReportSummary-XML",
430+
"codecoverage_sqlite": f"{expectedName}-CodeCoverage-SQLite",
431+
"codecoverage_xml": f"{expectedName}-CodeCoverage-XML",
432+
"codecoverage_json": f"{expectedName}-CodeCoverage-JSON",
433+
"codecoverage_html": f"{expectedName}-CodeCoverage-HTML",
434+
"statictyping_html": f"{expectedName}-StaticTyping-HTML",
435+
"package_all": f"{expectedName}-Packages",
436+
"documentation_html": f"{expectedName}-Documentation-HTML",
437+
"documentation_latex": f"{expectedName}-Documentation-LaTeX",
438+
"documentation_pdf": f"{expectedName}-Documentation-PDF",
411439
}
412440
413441
actualPythonVersion = """${{ needs.Params_All.outputs.python_version }}"""

0 commit comments

Comments
 (0)