Skip to content

Bump pymdown-extensions from 10.0 to 10.1 #176

Bump pymdown-extensions from 10.0 to 10.1

Bump pymdown-extensions from 10.0 to 10.1 #176

Workflow file for this run

name: test
on:
push:
branches:
- "**"
paths-ignore:
- "docs/**"
- "*.md"
pull_request:
paths-ignore:
- "docs/**"
- "*.md"
permissions:
contents: read
jobs:
build:
runs-on: ${{ matrix.os }}
strategy:
fail-fast: false
matrix:
os: [ubuntu-latest]
python-version: ["3.10"]
steps:
- uses: actions/checkout@v3
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v4
with:
python-version: ${{ matrix.python-version }}
- name: Upgrade pip
run: |
python -m pip install --upgrade pip
pip --version
- name: Install Poetry
run: |
pip install poetry
poetry --version
- name: Install dependencies
run: poetry install
- name: Test
shell: bash
run: ./scripts/test.sh