improve: import time with lazy regex and imports #928
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: Tests | |
on: | |
push: | |
branches: [ master ] | |
tags: [ '[0-9]+.[0-9]+.[0-9]+*' ] | |
pull_request: | |
branches: [ master ] | |
jobs: | |
linters: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: actions/setup-python@v5 | |
with: | |
python-version: '3.11' | |
- name: Installation (deps and package) | |
run: | | |
pip install . pre-commit mypy==1.13.0 -r tests/requirements.txt | |
- name: run linters | |
run: | | |
mdformat --check docs/ README.md | |
mypy src/ tests/ | |
pre-commit run -a | |
pre-commit try-repo . mdformat --files README.md | |
tests: | |
runs-on: ${{ matrix.os }} | |
strategy: | |
matrix: | |
python-version: ['3.9', '3.10', '3.11', '3.12', '3.13', '3.14-dev'] | |
os: [ubuntu-latest, macos-latest, windows-latest] | |
continue-on-error: ${{ matrix.python-version == '3.14-dev' }} | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Set up Python ${{ matrix.python-version }} | |
uses: actions/setup-python@v5 | |
with: | |
python-version: ${{ matrix.python-version }} | |
- name: Installation (deps and package) | |
run: | | |
pip install . -r tests/requirements.txt | |
- name: Test with pytest | |
run: | | |
pytest --cov | |
- name: Report coverage | |
if: matrix.os == 'ubuntu-latest' && matrix.python-version == '3.11' | |
uses: codecov/codecov-action@v4 | |
with: | |
token: ${{ secrets.CODECOV_TOKEN }} | |
# Run mdformat-gfm's tests to catch issues like https://github.com/hukkin/mdformat/issues/501. | |
test-gfm-plugin: | |
runs-on: ubuntu-latest | |
continue-on-error: true | |
steps: | |
- uses: actions/setup-python@v5 | |
with: | |
python-version: '3.x' | |
- uses: actions/checkout@v4 | |
with: | |
path: mdformat/ | |
- uses: actions/checkout@v4 | |
with: | |
repository: hukkin/mdformat-gfm | |
path: mdformat-gfm/ | |
- run: | | |
pip install pytest | |
pip install --editable mdformat-gfm/ | |
pip install --force-reinstall --editable mdformat/ | |
- run: | | |
pytest mdformat-gfm/ | |
allgood: | |
runs-on: ubuntu-latest | |
needs: | |
- linters | |
- tests | |
steps: | |
- run: echo "Great success!" | |
pypi-publish: | |
# Only publish if all other jobs succeed | |
needs: [ allgood ] | |
if: github.event_name == 'push' && startsWith(github.event.ref, 'refs/tags') | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: actions/setup-python@v5 | |
with: | |
python-version: '3.x' | |
- name: Install build and publish tools | |
run: | | |
pip install build twine | |
- name: Build and check | |
run: | | |
rm -rf dist/ && python -m build | |
twine check --strict dist/* | |
- name: Publish | |
run: | | |
twine upload dist/* | |
env: | |
TWINE_USERNAME: __token__ | |
TWINE_PASSWORD: ${{ secrets.PYPI_TOKEN }} |