Added support for repeating seeds from previous test run. #1025
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: 'coverage' | |
| on: | |
| push: | |
| workflow_dispatch: | |
| schedule: | |
| - cron: '0 0 * * 5' | |
| jobs: | |
| coverage: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v4 | |
| with: | |
| submodules: recursive | |
| - uses: actions/setup-python@v5 | |
| with: | |
| python-version: '3.13' | |
| - name: Run coverage | |
| run: | | |
| ./.github/run.sh tox -e coverage | |
| ./.github/run.sh coverage html --directory=htmlcov | |
| - name: Report coverage | |
| run: ./.github/run.sh coverage report -m --skip-covered | |
| - uses: actions/upload-artifact@v4 | |
| with: | |
| name: VUnit_coverage | |
| path: htmlcov |