Skip to content

Fix architectures in PyPI workflow #845

Fix architectures in PyPI workflow

Fix architectures in PyPI workflow #845

name: Tests
on:
- pull_request
- workflow_dispatch
jobs:
tests:
strategy:
matrix:
os: [ubuntu-latest, windows-latest, macos-latest]
python-version: ['3.8', '3.9', '3.10', '3.11', '3.12']
runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@v4
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v5
with:
python-version: ${{ matrix.python-version }}
allow-prereleases: true
- name: Install test dependencies and local package
run: |
python -m pip install -v .[test]
- name: Create clean test directory
run: |
mkdir testdir
- name: Test Traits package
run: python -m unittest discover -v traits
working-directory: testdir