Skip to content

Bump pymdown-extensions from 9.7 to 10.0 in /docs #117

Bump pymdown-extensions from 9.7 to 10.0 in /docs

Bump pymdown-extensions from 9.7 to 10.0 in /docs #117

Workflow file for this run

name: Push
on:
push:
jobs:
tests-n-lints:
strategy:
matrix:
python-version: ["3.7", "3.8", "3.9", "3.10"]
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v2
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v1
with:
python-version: ${{ matrix.python-version }}
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install setuptools wheel attrs codecov pdm
pdm install --group :all
eval $(pdm venv activate)
- name: Tests
run: |
pdm run pytest