Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
28 changes: 28 additions & 0 deletions flake.nix
Original file line number Diff line number Diff line change
Expand Up @@ -155,6 +155,34 @@ nix fmt
++ builtins.attrValues scriptPackages;
};

devShells.ci = pkgs.mkShell {
name = "ci";

# Minimal CI/CD tooling - no interactive development tools
packages = with pkgs; [
# Nix formatting
alejandra

# Go toolchain
go_1_25

# Testing
gotestsum
gotools

# Linting
golangci-lint

# Formatting
gofmt
golines
goimports

# Build
goreleaser
];
};

packages = {
default = pkgs.buildGoModule {
pname = "spectr";
Expand Down
Loading