Skip to content

Dev to main

Dev to main #64

Workflow file for this run

name: test-cd
on:
pull_request:
branches: [ "main" ]
jobs:
pypi_binwheels:
uses: ecmwf/reusable-workflows/.github/workflows/cd-pypi-binwheel.yml@feat/build_multiple_wheels
secrets: inherit
with:
platforms: "['ubuntu-latest','macos-latest','windows-latest']"
pyversions: "['38','39','310','311','312','313']"
testpypi: true
env_vars: |
{
"USE_RUST": "1",
"SETUPTOOLS_RUST_CARGO_PROFILE": "release"
}
pypi_purepython:
needs: pypi_binwheels
uses: ecmwf/reusable-workflows/.github/workflows/cd-pypi.yml@feat/build_multiple_wheels
secrets: inherit
with:
testpypi: true
env_vars: |
{
"USE_RUST": "0",
"SETUPTOOLS_RUST_CARGO_PROFILE": "release"
}