Skip to content

Fixed dependency on deprecated distutils package + Updated project to… #10

Fixed dependency on deprecated distutils package + Updated project to…

Fixed dependency on deprecated distutils package + Updated project to… #10

Workflow file for this run

name: MkDocs Merge Validation Build
on:
push:
branches:
- main
paths-ignore:
- '**.md'
pull_request:
paths-ignore:
- '**.md'
workflow_dispatch:
jobs:
run-tests:
name: Tests ${{ matrix.python }} on ${{ matrix.os }}
runs-on: ${{ matrix.os }}
strategy:
fail-fast: false
matrix:
os: [macos-latest, windows-latest, ubuntu-latest]
python: ["3.8", "3.9", "3.10"]
steps:
- uses: actions/checkout@v3
- name: Setup Python
uses: actions/setup-python@v4
with:
python-version: ${{ matrix.python }}
- name: Install tox and any other packages
run: pip install tox pytest pytest-cov click mkdocs ruamel.yaml
- name: Run tox
# Run tox using the version of Python in `PATH`
run: tox -e py