infrastructure

Unnamed repository; edit this file 'description' to name the repository.
Log | Files | Refs | README

commit ed46a0ea43424ed998c8d97b6b0d3e187f5b74aa
parent 99a5bc1df8c4abdd0abf1c80b4a36809d31a7813
Author: Silas Brack <silasbrack@gmail.com>
Date:   Sun, 12 Jan 2025 17:03:43 +0100

feat: add first github action

Diffstat:
A.github/workflows/test.yaml | 15+++++++++++++++
1 file changed, 15 insertions(+), 0 deletions(-)

diff --git a/.github/workflows/test.yaml b/.github/workflows/test.yaml @@ -0,0 +1,15 @@ +name: "Test" +on: + pull_request: + push: +jobs: + tests: + runs-on: ubuntu-latest + steps: + - uses: actions/checkout@v4 + - uses: cachix/install-nix-action@v25 + with: + nix_path: nixpkgs=channel:nixos-unstable + - uses: DeterminateSystems/magic-nix-cache-action@v2 + - run: nix-build + - run: nix-shell --run "echo OK"