From 9fbf67e3689fce5e21eb2310b28006d42cca51b1 Mon Sep 17 00:00:00 2001 From: Oliver Davies Date: Sun, 4 May 2025 19:55:20 +0100 Subject: [PATCH] Add test workflow --- .forgejo/workflows/test.yml | 9 +++++++++ 1 file changed, 9 insertions(+) create mode 100644 .forgejo/workflows/test.yml diff --git a/.forgejo/workflows/test.yml b/.forgejo/workflows/test.yml new file mode 100644 index 000000000..53c1245ea --- /dev/null +++ b/.forgejo/workflows/test.yml @@ -0,0 +1,9 @@ +--- +on: push +jobs: + check: + runs-on: nixos + steps: + - uses: actions/checkout@v4 + - run: nix develop --command ./run ci:build + - run: nix develop --command ./run ci:test