From e4baa81434373902fc5452e798da5664e08a9930 Mon Sep 17 00:00:00 2001 From: Chris Cochrun Date: Fri, 13 Feb 2026 10:50:06 -0600 Subject: [PATCH] adding a better workflow for basic testing --- .forgejo/workflows/demo.yaml | 12 +++--------- 1 file changed, 3 insertions(+), 9 deletions(-) diff --git a/.forgejo/workflows/demo.yaml b/.forgejo/workflows/demo.yaml index 7657407..7516224 100644 --- a/.forgejo/workflows/demo.yaml +++ b/.forgejo/workflows/demo.yaml @@ -1,18 +1,12 @@ on: [push] jobs: test: - runs-on: ubuntu-latest + runs-on: host steps: - name: checkout uses: actions/checkout@v3 - run: | - apt update - apt install sudo - apt install just + nix develop - - uses: https://github.com/cachix/install-nix-action@v27 - with: - nix_path: nixpkgs=channel:nixos-unstable - - - run: nix develop --command just test + - run: just test