From 9eff730eb2c0dfb178f5ec7dcaa4d00751a92d7f Mon Sep 17 00:00:00 2001 From: Evgeny Posenitskiy <45995097+q-posev@users.noreply.github.com> Date: Fri, 14 Jun 2024 12:49:21 +0200 Subject: [PATCH] Update actions.yml --- .github/workflows/actions.yml | 10 ++++++++++ 1 file changed, 10 insertions(+) diff --git a/.github/workflows/actions.yml b/.github/workflows/actions.yml index 18c0f0d0..1194e574 100644 --- a/.github/workflows/actions.yml +++ b/.github/workflows/actions.yml @@ -74,6 +74,11 @@ jobs: name: test-report-ubuntu path: test-suite.log + - name: create venv + run: | + python3 -m venv trexio-venv + source trexio-venv/bin/activate + - name: install Python API run: make python-install @@ -145,6 +150,11 @@ jobs: - name: check TREXIO run: make -j3 check + - name: create venv + run: | + python3 -m venv trexio-venv + source trexio-venv/bin/activate + - name: compile Python API run: | export H5_CFLAGS="-I$(brew --prefix hdf5)/include"