Skip to content

some physical constants from NIST databank #37

some physical constants from NIST databank

some physical constants from NIST databank #37

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/oopf || (echo "Executable not found!" && exit 1)
- name: Run Valgrind Memory Check
run: valgrind --leak-check=full --show-leak-kinds=all --track-origins=yes bin/oopf || (echo "Valgrind detected issues!" && exit 1)