-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
5 changed files
with
131 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,30 @@ | ||
root = true | ||
|
||
[*] | ||
charset = utf-8 | ||
# end_of_line = lf | ||
insert_final_newline = true | ||
trim_trailing_whitespace = true | ||
indent_style = tab | ||
indent_size = 2 | ||
tab_width = 2 | ||
|
||
|
||
[*.py] | ||
indent_style = tab | ||
indent_size = 2 | ||
|
||
[*.{yml,yaml}] | ||
indent_style = space | ||
indent_size = 2 | ||
|
||
[*.{json,ini}] | ||
indent_style = tab | ||
indent_size = 2 | ||
|
||
[*.md] | ||
trim_trailing_whitespace = false | ||
|
||
[*.rst] | ||
indent_style = space | ||
indent_size = 3 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,14 @@ | ||
version: 2 | ||
updates: | ||
# Maintain Python packages | ||
- package-ecosystem: "pip" | ||
directory: "/" | ||
target-branch: dev | ||
commit-message: | ||
prefix: "[Dependabot]" | ||
labels: | ||
- Dependencies | ||
reviewers: | ||
- Paebbels | ||
schedule: | ||
interval: "daily" # Checks on Monday trough Friday. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,18 @@ | ||
# New Features | ||
|
||
* tbd | ||
|
||
|
||
# Changes | ||
|
||
* tbd | ||
|
||
|
||
# Bug Fixes | ||
|
||
* tbd | ||
|
||
|
||
# Related PRs and Issues | ||
|
||
* tbd |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,39 @@ | ||
name: Pipeline | ||
|
||
on: | ||
push: | ||
workflow_dispatch: | ||
schedule: | ||
- cron: '0 0 * * 5' | ||
|
||
jobs: | ||
Params: | ||
uses: pyTooling/Actions/.github/workflows/Parameters.yml@dev | ||
with: | ||
name: IPXACT | ||
python_version_list: "3.11" | ||
system_list: "ubuntu" | ||
|
||
UnitTesting: | ||
uses: pyTooling/Actions/.github/workflows/UnitTesting.yml@dev | ||
needs: | ||
- Params | ||
with: | ||
jobs: ${{ needs.Params.outputs.python_jobs }} | ||
artifact: ${{ fromJson(needs.Params.outputs.artifact_names).unittesting_xml }} | ||
|
||
PublishTestResults: | ||
uses: pyTooling/Actions/.github/workflows/PublishTestResults.yml@dev | ||
needs: | ||
- UnitTesting | ||
|
||
ArtifactCleanUp: | ||
uses: pyTooling/Actions/.github/workflows/ArtifactCleanUp.yml@dev | ||
needs: | ||
- Params | ||
- UnitTesting | ||
- PublishTestResults | ||
with: | ||
package: ${{ fromJson(needs.Params.outputs.artifact_names).package_all }} | ||
remaining: | | ||
${{ fromJson(needs.Params.outputs.artifact_names).unittesting_xml }}-* |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,30 @@ | ||
# Python cache and object files | ||
__pycache__/ | ||
*.py[cod] | ||
|
||
# Coverage.py | ||
.coverage | ||
.cov | ||
coverage.xml | ||
|
||
# setuptools | ||
/build/**/*.* | ||
/dist/**/*.* | ||
/*.egg-info | ||
|
||
# Dependencies | ||
!requirements.txt | ||
|
||
# Sphinx | ||
doc/_build/ | ||
doc/IPXACT/**/*.* | ||
!doc/IPXACT/index.rst | ||
|
||
# BuildTheDocs | ||
doc/_theme/**/*.* | ||
|
||
# IntelliJ project files | ||
/.idea/workspace.xml | ||
|
||
# Git files | ||
!.git* |