AC: update pr (#4) #8
This file contains hidden or 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
| name: Test Coverage Pipeline | |
| on: | |
| push: | |
| branches: | |
| - master | |
| pull_request: | |
| branches: | |
| - master | |
| jobs: | |
| test-coverage: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Checkout repository | |
| uses: actions/checkout@v4 | |
| with: | |
| fetch-depth: 0 | |
| submodules: true | |
| - name: Setup DCMI Environment | |
| uses: ./.github/workflow-actions/setup-dcmi | |
| - name: Run coverage tests | |
| run: | | |
| make test-coverage | |
| # - name: Upload coverage report | |
| # if: always() | |
| # uses: actions/upload-artifact@v4 | |
| # with: | |
| # name: coverage-report | |
| # path: htmlcov/ | |
| # retention-days: 30 | |
| - name: Cleanup DCMI Environment | |
| uses: ./.github/workflow-actions/cleanup-dcmi |