feat: Primer3 takes a list of VCFs instead of a VariantLookup object #169
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: build wheels | |
on: | |
pull_request: | |
workflow_call: | |
workflow_dispatch: | |
jobs: | |
build-wheels: | |
name: Build wheels for ${{ matrix.python }} | |
runs-on: ubuntu-latest | |
strategy: | |
matrix: | |
python: ["3.11", "3.12"] | |
steps: | |
- uses: actions/checkout@v4 | |
with: | |
submodules: "true" | |
- name: Set up Python ${{ matrix.PYTHON_VERSION }} | |
uses: actions/setup-python@v5 | |
with: | |
python-version: ${{ matrix.python }} | |
- name: Build wheels | |
run: pip wheel --no-deps -w wheelhouse . | |
- name: Upload wheels | |
uses: actions/upload-artifact@v4 | |
with: | |
name: prymer-wheels-${{ matrix.python }} | |
path: ./wheelhouse/prymer*.whl | |
if-no-files-found: error |