Bump version again #8
Workflow file for this run
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: wheels | |
on: | |
workflow_dispatch: | |
push: | |
tags: | |
- "*" | |
jobs: | |
test: | |
name: "Wheels: Python ${{ matrix.python-version }} on ${{ matrix.os }}" | |
strategy: | |
matrix: | |
os: [macos-latest] | |
python-version: ["3.11", "3.12"] | |
include: | |
- os: "macos-latest" | |
python-version: "native" | |
runs-on: ${{ matrix.os }} | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Set up Python ${{ matrix.python-version }} | |
uses: actions/setup-python@v5 | |
if: matrix.python-version != 'native' | |
with: | |
python-version: ${{ matrix.python-version }} | |
- name: venv | |
run: | | |
python3 -m venv .venv | |
.venv/bin/pip3 install --upgrade pip | |
.venv/bin/pip3 install build | |
- name: build | |
run: | | |
.venv/bin/python3 -m build --wheel | |
- name: install | |
run: | | |
.venv/bin/pip3 install --no-index -f dist/ pymicro-vad | |
- name: test | |
run: | | |
.venv/bin/pip3 install pytest | |
.venv/bin/pytest -vv tests | |
- name: upload | |
uses: actions/upload-artifact@v3 | |
with: | |
name: package | |
path: dist/*.whl | |
if-no-files-found: error |