From ce586180e1f7aedfb8b80fc576868aa89bb0a01f Mon Sep 17 00:00:00 2001 From: Bart Koolen Date: Sat, 18 Apr 2026 21:00:14 +0200 Subject: [PATCH] Testing devshell in workflow --- .forgejo/workflows/nix-python.yaml | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) create mode 100644 .forgejo/workflows/nix-python.yaml diff --git a/.forgejo/workflows/nix-python.yaml b/.forgejo/workflows/nix-python.yaml new file mode 100644 index 0000000..2bcd006 --- /dev/null +++ b/.forgejo/workflows/nix-python.yaml @@ -0,0 +1,17 @@ +name: Nix Python CI +on: [push] + +jobs: + test: + runs-on: nix-runner + steps: + - name: Checkout code + uses: actions/checkout@v4 + + - name: run pwd + run: pwd + + - name: Run Python Script in DevShell + run: | + nix develop .#default --command python src/test.py +