Skip to content

Commit 2e7a012

Browse files
committedDec 14, 2020
✨NEW: Initial commit
Code copied from: executablebooks/markdown-it-py@3a5bdcc
1 parent ea2193f commit 2e7a012

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

79 files changed

+8945
-1
lines changed
 

‎.flake8

+3
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
[flake8]
2+
max-line-length = 100
3+
ignore = E203,W503

‎.github/workflows/tests.yml

+76
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,76 @@
1+
# This workflow will install Python dependencies, run tests and lint with a variety of Python versions
2+
# For more information see: https://help.github.com/actions/language-and-framework-guides/using-python-with-github-actions
3+
4+
name: continuous-integration
5+
6+
on:
7+
push:
8+
branches: [master]
9+
tags:
10+
- 'v*'
11+
pull_request:
12+
13+
jobs:
14+
15+
pre-commit:
16+
17+
runs-on: ubuntu-latest
18+
19+
steps:
20+
- uses: actions/checkout@v2
21+
- name: Set up Python 3.8
22+
uses: actions/setup-python@v2
23+
with:
24+
python-version: 3.8
25+
- uses: pre-commit/action@v2.0.0
26+
27+
tests:
28+
29+
runs-on: ubuntu-latest
30+
strategy:
31+
matrix:
32+
python-version: [pypy3, 3.6, 3.7, 3.8, 3.9]
33+
34+
steps:
35+
- uses: actions/checkout@v2
36+
- name: Set up Python ${{ matrix.python-version }}
37+
uses: actions/setup-python@v2
38+
with:
39+
python-version: ${{ matrix.python-version }}
40+
- name: Install dependencies
41+
run: |
42+
python -m pip install --upgrade pip
43+
pip install .[testing]
44+
- name: Run pytest
45+
run: |
46+
pytest --cov=mdit_py_plugins --cov-report=xml --cov-report=term-missing
47+
- name: Upload to Codecov
48+
uses: codecov/codecov-action@v1
49+
with:
50+
name: markdown-it-py-pytests
51+
flags: pytests
52+
file: ./coverage.xml
53+
fail_ci_if_error: true
54+
55+
publish:
56+
57+
name: Publish to PyPi
58+
needs: [pre-commit, tests]
59+
if: github.event_name == 'push' && startsWith(github.event.ref, 'refs/tags')
60+
runs-on: ubuntu-latest
61+
steps:
62+
- name: Checkout source
63+
uses: actions/checkout@v2
64+
- name: Set up Python 3.7
65+
uses: actions/setup-python@v2
66+
with:
67+
python-version: 3.7
68+
- name: Build package
69+
run: |
70+
pip install wheel
71+
python setup.py sdist bdist_wheel
72+
- name: Publish
73+
uses: pypa/gh-action-pypi-publish@v1.1.0
74+
with:
75+
user: __token__
76+
password: ${{ secrets.PYPI_KEY }}

0 commit comments

Comments
 (0)