Skip to content

Incremental builder #508

Incremental builder

Incremental builder #508

Workflow file for this run

name: Run Python Unit Tests
on:
pull_request:
branches:
- master
workflow_call:
workflow_dispatch:
permissions: {}
jobs:
tests:
strategy:
fail-fast: false
matrix:
os:
- macos-12
- ubuntu-22.04
- windows-2022
python-version:
- '3.8'
- '3.9'
- '3.10'
- '3.11'
- '3.12'
runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@v4.1.6
- name: Install Python 3
uses: actions/setup-python@v5.1.0
with:
cache: 'pip'
cache-dependency-path: '**/pyproject.toml'
check-latest: true
python-version: ${{ matrix.python-version }}
- name: Install dependencies
run: |
python -m pip install --upgrade pip setuptools wheel
pip install .[arelle,dev]
pip install tox tox-gh-actions
- name: Test with tox
run: tox