From c0b574361e7a3defbeaa096333da9b780c5c124c Mon Sep 17 00:00:00 2001 From: Gwen Lg Date: Tue, 27 Jan 2026 21:16:51 +0100 Subject: [PATCH] ci: add typos step in debug workflow use typos package than can be not up-to-date. add `typos` in the list of packages of the shell used for all CI jobs --- .woodpecker/debug.yaml | 5 +++++ shell.nix | 1 + 2 files changed, 6 insertions(+) diff --git a/.woodpecker/debug.yaml b/.woodpecker/debug.yaml index 4dc7d3c9..4ea96988 100644 --- a/.woodpecker/debug.yaml +++ b/.woodpecker/debug.yaml @@ -16,6 +16,11 @@ steps: commands: - nix-build -j4 --attr flakePackages.fmt + - name: check typos + image: nixpkgs/nix:nixos-24.05 + commands: + - nix-shell --attr ci --run typos + - name: build image: nixpkgs/nix:nixos-24.05 commands: diff --git a/shell.nix b/shell.nix index dee340c4..4afb3c43 100644 --- a/shell.nix +++ b/shell.nix @@ -34,6 +34,7 @@ in openssl curl jq + typos ]; shellHook = '' export AWS_REQUEST_CHECKSUM_CALCULATION='when_required'