Skip to content

Revert "test"

Revert "test" #14

name: Python package
on: [push]
jobs:
build_and_test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Set up Python
uses: actions/setup-python@v4
with:
python-version: '3.11'
architecture: 'x64'
- name: Display Python version
run: python -c "import sys; print(sys.version)"
- name: Install dependencies and testing
run: |
python -m pip install --upgrade pip
pip install poetry
poetry install --with=dev
PYTHONPATH=$(pwd)
export PYTHONPATH
python -m pip install pytest
pytest