Added vunit_help, vunit_compile, and vunit_restart commands to Active… #785
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
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.12' | |
- 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 |