Skip to content

Merge pull request #3 from amorison/mkdocs #46

Merge pull request #3 from amorison/mkdocs

Merge pull request #3 from amorison/mkdocs #46

Workflow file for this run

name: tox CI
on:
push:
branches: [ master ]
pull_request:
branches: [ master ]
# Allows you to run this workflow manually from the Actions tab
workflow_dispatch:
jobs:
build:
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
py: ['3.8', '3.9', '3.10', '3.11', '3.12']
steps:
- uses: actions/checkout@v2
with:
fetch-depth: '0'
- name: Setup Python
uses: actions/setup-python@v2
with:
python-version: ${{ matrix.py }}
- name: Update pip
run: python3 -m pip install -U pip
- name: Install tox-gh
run: python3 -m pip install tox-gh>=1.0.0 tox>=4.4.2
- name: Run tox
run: tox run