Skip to content

Try new tables.

Try new tables. #3

# name: Unit Testing Pipeline
# on:
# push:
# jobs:
# test-ubuntu:
# runs-on: ubuntu-latest
# strategy:
# matrix:
# python-version: ["3.8"]
# steps:
# - uses: actions/checkout@v4
# - name: Setup python ${{ matrix.python-version }}
# uses: actions/setup-python@v5
# with:
# python-version: ${{ matrix.python-version }}
# cache: 'pip'
# - name: Install octave
# run: |
# sudo apt-get update
# sudo apt-get install -y build-essential octave
# - name: Install pyspi dependencies
# run: |
# python -m pip install --upgrade pip
# pip install -r requirements.txt
# pip install .
# - name: Run data generation
# run: |
# python tests/generate_benchmark_tables.py
# - name: Upload artifact
# uses: actions/upload-artifact@v3
# with:
# name: benchmark-tables
# path: tests/CML7_benchmark_tables_new.pkl
#