From d3b5273c13ef8403c197e24b645a06fc310ba16d Mon Sep 17 00:00:00 2001 From: aelligp Date: Mon, 25 Mar 2024 15:59:36 +0100 Subject: [PATCH] test new workflow --- .github/workflows/GL_Makie.yml | 19 +++++++++++++++++++ 1 file changed, 19 insertions(+) create mode 100644 .github/workflows/GL_Makie.yml diff --git a/.github/workflows/GL_Makie.yml b/.github/workflows/GL_Makie.yml new file mode 100644 index 00000000..82f3a016 --- /dev/null +++ b/.github/workflows/GL_Makie.yml @@ -0,0 +1,19 @@ +name: Check Dependencies + +on: [push, pull_request] + +jobs: + check_dependencies: + runs-on: ubuntu-latest + steps: + - name: Checkout code + uses: actions/checkout@v2 + + - 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