diff --git a/.github/workflows/actions.yml b/.github/workflows/actions.yml index a6ddbf2..3d69bb1 100644 --- a/.github/workflows/actions.yml +++ b/.github/workflows/actions.yml @@ -30,7 +30,19 @@ jobs: - name: check TREXIO run: make check - + + - name: create virtual environment + run: | + python3 -m venv --clear pytrexio-venv + source pytrexio-venv/bin/activate + + - name: install Python API + run: make python-install + # alternatively we can also run pip install trexio to check PyPI installation + + - name: check Python API + run: make python-test + - name: clean run: make clean