Docs improvements #51
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: Build wheels and perform benchmarks | |
on: | |
pull_request: | |
branches: [develop, master] | |
push: | |
branches: [ci-debug] | |
jobs: | |
build_wheels: | |
name: Build wheels on for various systems | |
runs-on: ${{ matrix.os }} | |
strategy: | |
matrix: | |
os: [ubuntu-latest] #, windows-latest] | |
steps: | |
- uses: actions/checkout@v3 | |
with: | |
fetch-depth: 0 | |
- uses: actions/setup-python@v4 | |
name: Install Python | |
with: | |
python-version: '3.12' | |
- name: Build wheels | |
run: | | |
pip wheel --no-deps -w dist . | |
- uses: actions/upload-artifact@v4 | |
with: | |
name: wheel | |
path: dist/ | |
benchmark: | |
name: Benchmark tests | |
needs: [build_wheels] | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
with: | |
fetch-depth: 0 | |
- uses: actions/download-artifact@v4 | |
with: | |
name: wheel | |
path: dist/ | |
- uses: actions/setup-python@v4 | |
name: Install Python | |
with: | |
python-version: '3.12' | |
- name: Install wheel | |
run: pip install $(ls -1 dist/*.whl) | |
- name: Install pytest | |
run: pip install pytest pytest-cov | |
- name: Generate test signal | |
run: python benchmarks/generate_time_signal.py | |
- name: Run benchmarks | |
run: pytest --no-cov -rP benchmarks |