From cfccd9a010c312faa158b221af0981d0b36e0aba Mon Sep 17 00:00:00 2001 From: "copilot-swe-agent[bot]" <198982749+Copilot@users.noreply.github.com> Date: Sun, 11 Jan 2026 20:33:25 +0000 Subject: [PATCH] Fix workflow to include all files and add PR triggers Co-authored-by: dwinkler1 <22460147+dwinkler1@users.noreply.github.com> --- .github/workflows/check.yml | 13 +++++++++++-- 1 file changed, 11 insertions(+), 2 deletions(-) diff --git a/.github/workflows/check.yml b/.github/workflows/check.yml index 814babd..e488ad7 100644 --- a/.github/workflows/check.yml +++ b/.github/workflows/check.yml @@ -5,6 +5,15 @@ on: paths: - 'templates/rde/flake.lock' - 'templates/rde/**/*.nix' + - 'templates/rde/**/*.sh' + - 'templates/rde/**/*.lua' + - '.github/workflows/check.yml' + pull_request: + paths: + - 'templates/rde/flake.lock' + - 'templates/rde/**/*.nix' + - 'templates/rde/**/*.sh' + - 'templates/rde/**/*.lua' - '.github/workflows/check.yml' concurrency: group: ${{ github.workflow }}-${{ github.ref }} @@ -120,7 +129,7 @@ jobs: - name: Setup test directory with Python enabled run: | mkdir -p /tmp/test-python - cp -r templates/rde/* /tmp/test-python/ + cp -r templates/rde/. /tmp/test-python/ cd /tmp/test-python # Enable Python in the config sed -i 's/python = false;/python = true;/' flake.nix @@ -165,7 +174,7 @@ jobs: - name: Setup test directory with Julia enabled run: | mkdir -p /tmp/test-julia - cp -r templates/rde/* /tmp/test-julia/ + cp -r templates/rde/. /tmp/test-julia/ cd /tmp/test-julia # Enable Julia in the config sed -i 's/julia = false;/julia = true;/' flake.nix