Add a generic array structure that works as the base structure for any array #72
Workflow file for this run
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: | |
| branches: [ "main" ] | |
| pull_request: | |
| branches: [ "main" ] | |
| jobs: | |
| build: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - name: prepare environment for C compiling | |
| run: sudo apt-get install build-essential libgit2-dev | |
| - name: build tur | |
| run: make tur | |
| - name: build and run tests | |
| run: make test |