Skip to content

Add phase ratio calculations on velocity nodes #607

Add phase ratio calculations on velocity nodes

Add phase ratio calculations on velocity nodes #607

Workflow file for this run

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