Skip to content

Commit

Permalink
Cleanup some SQLite files after they got merged.
Browse files Browse the repository at this point in the history
  • Loading branch information
Paebbels committed Jan 11, 2024
1 parent b907c7e commit 0ac9826
Showing 1 changed file with 37 additions and 1 deletion.
38 changes: 37 additions & 1 deletion .github/workflows/Pipeline.yml
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,30 @@ jobs:
unittest_xml_artifact: ${{ fromJson(needs.UnitTestingParams.outputs.artifact_names).unittesting_xml }}
coverage_sqlite_artifact: ${{ fromJson(needs.UnitTestingParams.outputs.artifact_names).codecoverage_sqlite }}

DocCoverage:
name: Check documentation coverage
runs-on: ubuntu-latest
needs:
- UnitTestingParams
steps:
- name: ⏬ Checkout repository
uses: actions/checkout@v4

- name: 🐍 Setup Python ${{ inputs.python_version }}
uses: actions/setup-python@v5
with:
python-version: ${{ inputs.python_version }}

# - name: 🔧 Install wheel,tomli and pip dependencies (native)
# run: |
# # python -m pip install --disable-pip-version-check -U wheel tomli
# python -m pip install --disable-pip-version-check ${{ inputs.requirements }}

- name: Python Interrogate Check
uses: JackMcKew/python-interrogate-check@main
with:
path: sphinx_reports

Package:
uses: pyTooling/Actions/.github/workflows/Package.yml@cov
needs:
Expand Down Expand Up @@ -56,6 +80,18 @@ jobs:
secrets:
codacy_token: ${{ secrets.CODACY_PROJECT_TOKEN }}

CoverageCleanUp:
name: 🗑️ Intermediate Artifact Cleanup
runs-on: ubuntu-latest
needs:
- UnitTestingParams
- PublishCoverageResults
steps:
- name: 🗑️ Delete coverage SQLite artifacts
uses: geekyeggo/delete-artifact@v4
with:
name: ${{ fromJson(needs.UnitTestingParams.outputs.artifact_names).codecoverage_sqlite }}-*

PublishTestResults:
uses: pyTooling/Actions/.github/workflows/PublishTestResults.yml@cov
needs:
Expand Down Expand Up @@ -88,7 +124,7 @@ jobs:
- StaticTypeCheck
with:
doc: ${{ fromJson(needs.UnitTestingParams.outputs.artifact_names).documentation_html }}
coverage: ${{ fromJson(needs.UnitTestingParams.outputs.artifact_names).codecoverage_html }}
# coverage: ${{ fromJson(needs.UnitTestingParams.outputs.artifact_names).codecoverage_html }}
typing: ${{ fromJson(needs.UnitTestingParams.outputs.artifact_names).statictyping_html }}

ReleasePage:
Expand Down

0 comments on commit 0ac9826

Please sign in to comment.