fixing some typos and missing list prunes #330
This file contains hidden or 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: C/C++ CI | |
| on: | |
| push: | |
| pull_request: | |
| branches: [ "master" ] | |
| jobs: | |
| build: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v3 | |
| - name: Update Libraries | |
| run: sudo apt-get update | |
| - name: Install dependencies | |
| run: sudo apt-get install libarmadillo-dev libopenblas-dev libsuperlu-dev -y | |
| - name: Build library | |
| run: make |