Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 7 additions & 1 deletion .github/workflows/tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,8 @@ jobs:
sudo apt-get install -y \
build-essential gfortran make \
libfftw3-dev liblapack-dev \
python3 python3-numpy
python3 python3-pip python3-numpy
python3 -m pip install scipy

# 3️⃣ Compile the QDyn executable (bin ends up in src/qdyn)
- name: Build qdyn
Expand All @@ -43,4 +44,9 @@ jobs:
if grep "ERROR found" test_output.log; then
echo "Some tests failed — see log above."
exit 1
elif grep "SKIP found" test_output.log; then
echo "Some tests skipped — see log above."
exit 1
else
echo "All tests passed."
fi
Loading