1
0
mirror of https://github.com/TREX-CoE/trexio.git synced 2024-08-25 06:31:43 +02:00

add workflow to check Python API on Ubuntu

This commit is contained in:
q-posev 2021-09-14 10:17:20 +02:00
parent e9c376c83b
commit 39b127270f

View File

@ -31,6 +31,18 @@ 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