Add a project coverage script #2
Workflow file for this run
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: Project coverage | |
on: | |
push: | |
pull_request: | |
jobs: | |
coverage: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout regressions | |
uses: actions/checkout@v4 | |
with: | |
path: mkdocs-regressions | |
- name: Checkout catalog | |
uses: actions/checkout@v4 | |
with: | |
repository: mkdocs/catalog | |
path: mkdocs-catalog | |
- name: Set up Python | |
uses: actions/setup-python@v4 | |
with: | |
python-version: '3.11' | |
- name: Print project coverage | |
run: python mkdocs-regressions/coverage.py |