1
0
mirror of https://github.com/TREX-CoE/qmckl.git synced 2024-06-01 02:45:43 +02:00

Add CI for Python API

This commit is contained in:
q-posev 2022-05-04 15:14:16 +02:00
parent a733990fb4
commit de443ff30b
2 changed files with 15 additions and 1 deletions

View File

@ -60,6 +60,21 @@ jobs:
run: make distcheck
working-directory: _build
- name: Setup the virtual environment
run: |
python3 -m venv --clear pyqmckl
source pyqmckl/bin/activate
- name: Install the Python requirements
run: pip install -r requirements.txt
working-directory: python
- name: Install the Python API
run: make python-install
- name: Test the Python API
run: make python-test
x86_macos:
runs-on: macos-latest

View File

@ -1 +0,0 @@
__version__ = "0.2.0"