Add goals for simulation tools in GOALS.md #53
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: Makefile CI | |
| on: | |
| push: | |
| branches: ["main"] | |
| pull_request: | |
| branches: ["main"] | |
| jobs: | |
| build: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Checkout repository | |
| uses: actions/checkout@v4 | |
| - name: Install Fortran compiler, build tools, and Valgrind | |
| run: sudo apt-get update && sudo apt-get install -y gfortran make valgrind | |
| - name: Compile the Fortran project | |
| run: make | |
| - name: Verify executable | |
| run: ls -l ./bin/oopf90 || (echo "Executable not found!" && exit 1) | |