Skip to content

Commit

Permalink
ci: add build workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
wlruys committed Nov 1, 2023
1 parent b3652e4 commit 7f6111c
Showing 1 changed file with 7 additions and 2 deletions.
9 changes: 7 additions & 2 deletions .github/workflows/build_check.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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"


0 comments on commit 7f6111c

Please sign in to comment.