From 278db0e1d23e136778975d6cd261bdde6af56fcc Mon Sep 17 00:00:00 2001 From: Garionion Date: Wed, 22 Mar 2023 20:15:40 +0100 Subject: [PATCH] feat: add gitea actions workflow --- .gitea/workflows/build.yml | 8 ++++++++ 1 file changed, 8 insertions(+) create mode 100644 .gitea/workflows/build.yml diff --git a/.gitea/workflows/build.yml b/.gitea/workflows/build.yml new file mode 100644 index 0000000..e637c8b --- /dev/null +++ b/.gitea/workflows/build.yml @@ -0,0 +1,8 @@ +name: "Test" +on: [push] +jobs: + build: + runs-on: nixos/nix + steps: + - uses: actions/checkout@v3 + - run: nix build \ No newline at end of file