Multiple Dispatch #45
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Build | |
on: | |
push: | |
branches: [ "main", "dev" ] | |
pull_request: | |
branches: [ "main", "dev" ] | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- name: configure | |
run: | | |
sudo apt update | |
sudo apt install libsuitesparse-dev | |
sudo apt install liblapacke-dev | |
python -m pip install --upgrade pip | |
python -m pip install regex colored | |
- name: make | |
run: (mkdir build; cd build; cmake ..; sudo make install) |