Skip to content

Add goals for simulation tools in GOALS.md #53

Add goals for simulation tools in GOALS.md

Add goals for simulation tools in GOALS.md #53

Workflow file for this run

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)