diff --git a/.gitea/workflows/build.yml b/.gitea/workflows/build.yml new file mode 100644 index 0000000..4674a22 --- /dev/null +++ b/.gitea/workflows/build.yml @@ -0,0 +1,14 @@ +name: "Test" +on: [push] +jobs: + build: + runs-on: ubuntu-latest + container: + image: nixos/nix + options: --entrypoint /usr/bin/env bash + steps: + - run: whoami + - 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