Add phase ratio calculations on velocity nodes #607
This file contains 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: Check Dependencies | |
on: [push, pull_request] | |
jobs: | |
check_dependencies: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout code | |
uses: actions/checkout@v4 | |
- name: Check for GLMakie dependency | |
run: | | |
if grep -q "GLMakie" ./Project.toml; then | |
echo "GLMakie dependency found, failing the test." | |
exit 1 | |
else | |
echo "GLMakie dependency not found." | |
fi |