From 7f6111c4116d8c348ee2032208e22406454b0876 Mon Sep 17 00:00:00 2001 From: dialecticDolt Date: Tue, 31 Oct 2023 23:24:13 -0500 Subject: [PATCH] ci: add build workflow --- .github/workflows/build_check.yml | 9 +++++++-- 1 file changed, 7 insertions(+), 2 deletions(-) diff --git a/.github/workflows/build_check.yml b/.github/workflows/build_check.yml index bc9bc571..75348c3f 100644 --- a/.github/workflows/build_check.yml +++ b/.github/workflows/build_check.yml @@ -27,10 +27,15 @@ jobs: sudo update-alternatives --install /usr/bin/gcc gcc /usr/bin/gcc-${{ matrix.gcc }} 100 sudo update-alternatives --install /usr/bin/g++ g++ /usr/bin/g++-${{ matrix.gcc }} 100 - - name: Build and Test + - name: Build run: | # Your build and test commands go here gcc --version python --version - pip install . --verbose + pip install . --verbose + + - name: Test Install + run: + python -c "from parla import Parla; from parla.tasks import TaskSpace" +