From c83b797c47729d37605a706fb842fce6ae1176d3 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 | 13 +++++++++++++ 1 file changed, 13 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..f8d5fda --- /dev/null +++ b/.gitea/workflows/build.yml @@ -0,0 +1,13 @@ +name: "Test" +on: [push] +jobs: + build: + runs-on: ubuntu-latest + container: + image: nixos/nix + entrypoint: /usr/bin/env bash + steps: + - uses: actions/checkout@v3 + - run: nix-channel --add https://nixos.org/channels/nixos-unstable-small nixpkgs + - run: nix-channel --update + - run: nix build \ No newline at end of file