Skip to content

add extra information for bug issues #90

add extra information for bug issues

add extra information for bug issues #90

Workflow file for this run

name: Run tests
on:
push:
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: ['3.10', '3.11', '3.12']
name: Python ${{ matrix.python-version }} sample
steps:
- name: Checkout
uses: actions/checkout@master
- name: Set up Python
uses: actions/setup-python@v2
with:
python-version: ${{ matrix.python-version }}
- name: install_dependencies
run: |
# sudo apt install -y gcc g++ gfortran libopenblas-dev liblapack-dev pkg-config
pip install poetry pytest
poetry lock
poetry install
pip install .
- name: Run tests
run: |
pytest tests