Add API docs #17
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: version_check | |
on: | |
pull_request: | |
branches: | |
- '**' | |
paths: | |
# Only run when these files have been edited. | |
- 'markdown/__meta__.py' | |
jobs: | |
check_version: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v2 | |
- name: Setup Python | |
uses: actions/setup-python@v2 | |
with: | |
python-version: '3.11' | |
- name: Install dependencies | |
run: | | |
python -m pip install --upgrade pip packaging | |
- name: Run tests | |
run: | | |
python -m unittest tests.test_meta.TestVersion.test__version__IsValid |