9
9
10
10
jobs :
11
11
UnitTestingParams :
12
- uses : pyTooling/Actions/.github/workflows/Parameters.yml@r1
12
+ uses : pyTooling/Actions/.github/workflows/Parameters.yml@dev
13
13
with :
14
14
name : pyVHDLModel
15
15
python_version_list : " 3.9 3.10 3.11 3.12 pypy-3.9 pypy-3.10"
16
16
# disable_list: "windows:pypy-3.8 windows:pypy-3.9 windows:pypy-3.10"
17
17
18
18
UnitTesting :
19
- uses : pyTooling/Actions/.github/workflows/UnitTesting.yml@r1
19
+ uses : pyTooling/Actions/.github/workflows/UnitTesting.yml@dev
20
20
needs :
21
21
- UnitTestingParams
22
22
with :
27
27
coverage_sqlite_artifact : ${{ fromJson(needs.UnitTestingParams.outputs.artifact_names).codecoverage_sqlite }}
28
28
29
29
StaticTypeCheck :
30
- uses : pyTooling/Actions/.github/workflows/StaticTypeCheck.yml@r1
30
+ uses : pyTooling/Actions/.github/workflows/StaticTypeCheck.yml@dev
31
31
needs :
32
32
- UnitTestingParams
33
33
with :
38
38
html_artifact : ${{ fromJson(needs.UnitTestingParams.outputs.artifact_names).statictyping_html }}
39
39
40
40
DocCoverage :
41
- uses : pyTooling/Actions/.github/workflows/CheckDocumentation.yml@r1
41
+ uses : pyTooling/Actions/.github/workflows/CheckDocumentation.yml@dev
42
42
needs :
43
43
- UnitTestingParams
44
44
with :
47
47
# fail_below: 70
48
48
49
49
Package :
50
- uses : pyTooling/Actions/.github/workflows/Package.yml@r1
50
+ uses : pyTooling/Actions/.github/workflows/Package.yml@dev
51
51
needs :
52
52
- UnitTestingParams
53
53
- UnitTesting
56
56
artifact : ${{ fromJson(needs.UnitTestingParams.outputs.artifact_names).package_all }}
57
57
58
58
PublishCoverageResults :
59
- uses : pyTooling/Actions/.github/workflows/PublishCoverageResults.yml@r1
59
+ uses : pyTooling/Actions/.github/workflows/PublishCoverageResults.yml@dev
60
60
needs :
61
61
- UnitTestingParams
62
62
- UnitTesting
@@ -69,15 +69,15 @@ jobs:
69
69
codacy_token : ${{ secrets.CODACY_PROJECT_TOKEN }}
70
70
71
71
PublishTestResults :
72
- uses : pyTooling/Actions/.github/workflows/PublishTestResults.yml@r1
72
+ uses : pyTooling/Actions/.github/workflows/PublishTestResults.yml@dev
73
73
needs :
74
74
- UnitTestingParams
75
75
- UnitTesting
76
76
with :
77
77
merged_junit_artifact : ${{ fromJson(needs.UnitTestingParams.outputs.artifact_names).unittesting_xml }}
78
78
79
79
IntermediateCleanUp :
80
- uses : pyTooling/Actions/.github/workflows/IntermediateCleanUp.yml@r1
80
+ uses : pyTooling/Actions/.github/workflows/IntermediateCleanUp.yml@dev
81
81
needs :
82
82
- UnitTestingParams
83
83
- PublishCoverageResults
@@ -88,14 +88,14 @@ jobs:
88
88
xml_unittest_artifacts_prefix : ${{ fromJson(needs.UnitTestingParams.outputs.artifact_names).unittesting_xml }}-
89
89
90
90
# VerifyDocs:
91
- # uses: pyTooling/Actions/.github/workflows/VerifyDocs.yml@r1
91
+ # uses: pyTooling/Actions/.github/workflows/VerifyDocs.yml@dev
92
92
# needs:
93
93
# - UnitTestingParams
94
94
# with:
95
95
# python_version: ${{ needs.UnitTestingParams.outputs.python_version }}
96
96
97
97
HTMLDocumentation :
98
- uses : pyTooling/Actions/.github/workflows/SphinxDocumentation.yml@r1
98
+ uses : pyTooling/Actions/.github/workflows/SphinxDocumentation.yml@dev
99
99
needs :
100
100
- UnitTestingParams
101
101
- PublishTestResults
@@ -109,7 +109,7 @@ jobs:
109
109
latex_artifact : ${{ fromJson(needs.UnitTestingParams.outputs.artifact_names).documentation_latex }}
110
110
111
111
# PDFDocumentation:
112
- # uses: pyTooling/Actions/.github/workflows/LaTeXDocumentation.yml@r1
112
+ # uses: pyTooling/Actions/.github/workflows/LaTeXDocumentation.yml@dev
113
113
# needs:
114
114
# - UnitTestingParams
115
115
# - HTMLDocumentation
@@ -119,7 +119,7 @@ jobs:
119
119
# pdf_artifact: ${{ fromJson(needs.UnitTestingParams.outputs.artifact_names).documentation_pdf }}
120
120
121
121
PublishToGitHubPages :
122
- uses : pyTooling/Actions/.github/workflows/PublishToGitHubPages.yml@r1
122
+ uses : pyTooling/Actions/.github/workflows/PublishToGitHubPages.yml@dev
123
123
needs :
124
124
- UnitTestingParams
125
125
- HTMLDocumentation
@@ -132,14 +132,14 @@ jobs:
132
132
typing : ${{ fromJson(needs.UnitTestingParams.outputs.artifact_names).statictyping_html }}
133
133
134
134
ReleasePage :
135
- uses : pyTooling/Actions/.github/workflows/Release.yml@r1
135
+ uses : pyTooling/Actions/.github/workflows/Release.yml@dev
136
136
if : startsWith(github.ref, 'refs/tags')
137
137
needs :
138
138
- Package
139
139
- PublishToGitHubPages
140
140
141
141
PublishOnPyPI :
142
- uses : pyTooling/Actions/.github/workflows/PublishOnPyPI.yml@r1
142
+ uses : pyTooling/Actions/.github/workflows/PublishOnPyPI.yml@dev
143
143
if : startsWith(github.ref, 'refs/tags')
144
144
needs :
145
145
- UnitTestingParams
@@ -152,7 +152,7 @@ jobs:
152
152
PYPI_TOKEN : ${{ secrets.PYPI_TOKEN }}
153
153
154
154
ArtifactCleanUp :
155
- uses : pyTooling/Actions/.github/workflows/ArtifactCleanUp.yml@r1
155
+ uses : pyTooling/Actions/.github/workflows/ArtifactCleanUp.yml@dev
156
156
needs :
157
157
- UnitTestingParams
158
158
- UnitTesting
0 commit comments