Skip to content

pytest.yml: add -vv for verbose #32

pytest.yml: add -vv for verbose

pytest.yml: add -vv for verbose #32

Workflow file for this run

name: "Build"
on:
push:
branches: [ main ]
pull_request:
branches: [ main ]
jobs:
build:
name: Test Build
runs-on: macos-latest
steps:
- uses: actions/checkout@v4
- name: Setup Python
uses: actions/setup-python@v5
with:
python-version: "3.13"
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install -r requirements.txt
pip install --upgrade build wheel
- name: Build .whl
run: |
python -m build
- name: Upload artifact
uses: actions/upload-artifact@v4
with:
path: dist/*.whl