Skip to content

Commit

Permalink
add workflow fix
Browse files Browse the repository at this point in the history
  • Loading branch information
aelligp committed Mar 25, 2024
1 parent d3b5273 commit 012e5f0
Showing 1 changed file with 7 additions and 4 deletions.
11 changes: 7 additions & 4 deletions .github/workflows/GL_Makie.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,13 +7,16 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v2
uses: actions/checkout@v4

- name: Check for GLMakie dependency
- name: Check for GLMakie and JustPIC dependencies
run: |
if grep -q "GLMakie" ./Project.toml; then
echo "GLMakie dependency found, failing the test."
exit 1
else
echo "GLMakie dependency not found."
fi
if grep -q "JustPIC" ./Project.toml; then
echo "JustPIC dependency found, failing the test."
exit 1
fi
echo "Neither GLMakie nor JustPIC dependencies found."

0 comments on commit 012e5f0

Please sign in to comment.