Skip to content

Wheels build updates #200

Wheels build updates

Wheels build updates #200

Workflow file for this run

# SPDX-FileCopyrightText: Daniele Nicolodi <[email protected]>
# SPDX-License-Identifier: Apache-2.0 OR LGPL-2.1-or-later
name: tests
on:
- push
- pull_request
jobs:
tests:
runs-on: ${{ matrix.platform }}
strategy:
fail-fast: false
matrix:
python: ['3.7', '3.8', '3.9', '3.10', '3.11', '3.12', '3.13']
platform: ['macos-12', 'ubuntu-20.04', 'windows-2022']
steps:
- uses: actions/checkout@v4
- uses: actions/setup-python@v5
with:
python-version: ${{ matrix.python }}
allow-prereleases: true
- uses: bus1/cabuild/action/msdevshell@v1
with:
architecture: x64
if: runner.os == 'Windows'
- run: python -m pip install build
- run: python -m build
- run: python -m pip install dist/*.whl
shell: bash
- run: python -m unittest test.py
- run: python check.py
env:
PYTHONHASHSEED: 0