Skip to content

Introduce full_test.yml and use Python versions 3.8 to 3.12 in CIBW_BUILD. #3

Introduce full_test.yml and use Python versions 3.8 to 3.12 in CIBW_BUILD.

Introduce full_test.yml and use Python versions 3.8 to 3.12 in CIBW_BUILD. #3

Workflow file for this run

name: Full test
on:
push:
branches: [ master]
pull_request:
branches: [ master ]
jobs:
build_wheels:
name: Build wheels on ${{ matrix.os }}
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [ubuntu-22.04, windows-2022, macos-11]
steps:
- uses: actions/checkout@v4
# Used to host cibuildwheel
- uses: actions/setup-python@v5
- name: Install cibuildwheel
run: python -m pip install cibuildwheel==2.17.0
- name: Build wheels
run: python -m cibuildwheel --output-dir wheelhouse
# to supply options, put them in 'env', like:
env:
CIBW_BEFORE_ALL_MACOS: bash scripts/cibw_before_all_macos.sh
CIBW_TEST_REQUIRES: pytest
CIBW_TEST_COMMAND: pytest --pyargs qmeq
- uses: actions/upload-artifact@v4
with:
path: ./wheelhouse/*.whl