From f81ec243299385df4ff344d466b956d73c49eb42 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Cyryl=20P=C5=82otnicki?= Date: Tue, 8 Nov 2022 16:24:13 +0000 Subject: [PATCH] add test step to CI --- .woodpecker.yml | 11 ++++------- 1 file changed, 4 insertions(+), 7 deletions(-) diff --git a/.woodpecker.yml b/.woodpecker.yml index f1085cd4..ce52f481 100644 --- a/.woodpecker.yml +++ b/.woodpecker.yml @@ -1,9 +1,6 @@ pipeline: - build: - image: debian + check: + image: nixos/nix:latest commands: - - echo "This is the build step" - a-test-step: - image: debian - commands: - - echo "Testing.." + - nix-shell --pure --run 'nix --extra-experimental-features "flakes nix-command" flake info' + - nix-shell --pure --run 'statix check'