Skip to content

Dependency updates + CI for non-critical infra #25

Dependency updates + CI for non-critical infra

Dependency updates + CI for non-critical infra #25

Workflow file for this run

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"'