Skip to content

Copying asset files from reports directory #558

Copying asset files from reports directory

Copying asset files from reports directory #558

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-14
- ubuntu-24.04
- windows-2022
python-version:
- '3.8'
- '3.9'
- '3.10'
- '3.11'
- '3.12'
runs-on: ${{ matrix.os }}
steps:
- uses: actions/[email protected]
- name: Install Python 3
uses: actions/[email protected]
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