Dependency updates + CI for non-critical infra #25
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: CI | |
on: | |
push: | |
branches: | |
- master | |
pull_request: | |
merge_group: | |
permissions: | |
contents: read | |
jobs: | |
nix-fmt: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: cachix/install-nix-action@v27 | |
- run: nix fmt -- --fail-on-change | |
# We probably should replace with a different faster CI soon, | |
# but atleast this gives us confidence for now | |
nix-build: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: cachix/install-nix-action@v27 | |
- run: nix run github:Mic92/nix-fast-build -- --no-nom | |
# all builds combined consume too much disk space... we should soon switch to something else | |
nixos: | |
runs-on: ubuntu-latest | |
strategy: | |
matrix: | |
machine: [caliban, umbriel] | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: cachix/install-nix-action@v27 | |
- run: nix build '.#nixosConfigurations."${{ matrix.machine }}.nixos.org"' |