Skip to content

file to auto test: debug #2

file to auto test: debug

file to auto test: debug #2

name: Cross-Platform Tests
## activate tests when change the version, or a test
on:
push:
#branches: [main]
paths:
- 'pyproject.toml'
- 'tox.ini'
- 'requirements*.txt'
- '.github/workflows/cross-platform.yml'
jobs:
test:
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [ubuntu-latest, windows-latest, macos-latest]
python-version: ["3.10", "3.11", "3.12"]
steps:
- uses: actions/checkout@v4
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v5
with:
python-version: ${{ matrix.python-version }}
- name: Install tox
run: pip install tox tox-gh-actions
- name: Run tox
run: tox