Hybrid cloud cluster monorepo with Ansible, K8s, NixOS, and Terraform. cute.haus
ansible terraform nix k8s
0

Configure Feed

Select the types of activity you want to include in your feed.

ci: add pull request checks

Aly Raffauf (Jun 24, 2026, 4:19 PM EDT) f7aee6ee 7fabd9e7

+12
+3
.github/workflows/build-nix.yml
··· 32 32 run: nix build --accept-flake-config --print-out-paths .#packages.x86_64-linux.gen-files 33 33 name: build-nix 34 34 'on': 35 + pull_request: 35 36 push: 37 + branches: 38 + - master 36 39 paths: 37 40 - flake.lock 38 41 - flake.nix
+3
.github/workflows/build-nixos.yml
··· 76 76 run: nix build --accept-flake-config --print-out-paths .#nixosConfigurations.snowpoint.config.system.build.toplevel 77 77 name: build-nixos 78 78 'on': 79 + pull_request: 79 80 push: 81 + branches: 82 + - master 80 83 paths-ignore: 81 84 - '**/*.md' 82 85 - .github/**
+3
.github/workflows/check-config.yml
··· 5 5 group: ${{ github.workflow }}-${{ github.ref }} 6 6 7 7 on: 8 + pull_request: 8 9 push: 10 + branches: 11 + - master 9 12 paths-ignore: 10 13 - "**/*.md" 11 14 - .github/**
+3
.github/workflows/check-nix.yml
··· 13 13 run: nix -Lv flake check 14 14 name: check-nix 15 15 'on': 16 + pull_request: 16 17 push: 18 + branches: 19 + - master 17 20 paths-ignore: 18 21 - '**/*.md' 19 22 - .github/**