Skip to content

Bump mkdocs-material from 9.1.3 to 9.1.16 #609

Bump mkdocs-material from 9.1.3 to 9.1.16

Bump mkdocs-material from 9.1.3 to 9.1.16 #609

Workflow file for this run

name: CI
on:
push:
branches:
- '**'
tags:
- '**'
pull_request:
branches:
- '**'
jobs:
test:
strategy:
fail-fast: false
max-parallel: 4
matrix:
os: [ubuntu-latest, windows-latest, macos-latest]
python-version: [3.8, 3.9, "3.10", "3.11"]
include:
- python-version: 3.8
tox-env: py38
- python-version: 3.9
tox-env: py39
- python-version: "3.10"
tox-env: py310
- python-version: "3.11"
tox-env: py311
env:
TOXENV: ${{ matrix.tox-env }}
runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@v2
- name: Setup Python ${{ matrix.python-version }}
uses: actions/setup-python@v2
with:
python-version: ${{ matrix.python-version }}
- name: Install dependencies
run: |
python -m pip install --upgrade pip tox coverage codecov
- name: Run tox
run: |
python -m tox --discover $(which python)
shell: bash