From 5a3e177d4aa42028395fd4869a492c4a1e959af3 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 | 11 +++++++++++ 1 file changed, 11 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..0cee646 --- /dev/null +++ b/.gitea/workflows/build.yml @@ -0,0 +1,11 @@ +name: "Test" +on: [push] +jobs: + build: + runs-on: ubuntu-latest + steps: + - uses: actions/checkout@v3 + - uses: github.com/cachix/install-nix-action@v20 + with: + nix_path: nixpkgs=channel:nixos-unstable-small + - run: nix --extra-experimental-features 'nix-command flakes' build \ No newline at end of file