Skip to content

Benchmark

Benchmark #10

Workflow file for this run

name: Benchmark
on: [workflow_dispatch]
jobs:
build_and_test:
name: "${{ matrix.os }} + python ${{ matrix.python-version }}"
runs-on: "${{ matrix.os }}"
strategy:
fail-fast: false
matrix:
os: ["windows-latest", "ubuntu-latest", "macos-13"]
python-version: ["3.7", "3.8", "3.9", "3.10", "3.11", "3.12"]
steps:
- uses: actions/checkout@v3
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v4
with:
python-version: ${{ matrix.python-version }}
- name: Install lapx from source
run: |
python -m pip install --upgrade pip
pip install git+https://github.com/rathaROG/lapx.git
- name: Install scipy
run: |
pip install scipy
- name: Run benchmark.py
run: |
cd .githubtest
python benchmark.py