Skip to content

Fix autolink backslash test (markdown-it behavior changed here) #146

Fix autolink backslash test (markdown-it behavior changed here)

Fix autolink backslash test (markdown-it behavior changed here) #146

Workflow file for this run

name: Tests
on:
push:
branches: [ master ]
tags: [ '[0-9]+.[0-9]+.[0-9]+*' ]
pull_request:
branches: [ master ]
jobs:
build:
runs-on: ${{ matrix.os }}
strategy:
matrix:
python-version: ['3.8', '3.9', '3.10', '3.11']
os: [ubuntu-latest, macos-latest, windows-latest]
steps:
- uses: actions/checkout@v3
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v3
with:
python-version: ${{ matrix.python-version }}
- name: Installation (deps and package)
run: |
pip install "poetry==1.6.1"
poetry config virtualenvs.create false
poetry install --no-interaction --no-ansi
- name: Linters
if: matrix.os == 'ubuntu-latest' && matrix.python-version == '3.10'
run: |
pre-commit run -a
mypy .
- name: Test with pytest
run: |
pytest
pypi-publish:
# Only publish if all other jobs succeed
needs: [ build ]
if: github.event_name == 'push' && startsWith(github.event.ref, 'refs/tags')
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/setup-python@v3
with:
python-version: '3.10'
- 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 }}