Skip to content

Merge pull request #48 from Cambridge-ICCS/windows-build-instructions #29

Merge pull request #48 from Cambridge-ICCS/windows-build-instructions

Merge pull request #48 from Cambridge-ICCS/windows-build-instructions #29

Workflow file for this run

name: fypp-checks
on:
# run on every push
push:
jobs:
various:
name: FYPP checks - runs check on fypp and f90 files
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/setup-python@v4
with:
python-version: "3.11"
- run: pip install fypp
- name: Check fypp matches f90
run: |
fypp src/ftorch.fypp src/temp.f90_temp
if ! diff -q src/ftorch.f90 src/temp.f90_temp; then
echo "Error: The code in ftorch.f90 does not match that expected from ftorch.fypp."
echo "Please re-run fypp on ftorch.fypp to ensure consistency and re-commit."
exit 1
else
exit 0
fi