From 00f7bd09546cbf468bd3545a7348ad080dcd8ac4 Mon Sep 17 00:00:00 2001 From: Miguel de la Cruz Date: Thu, 29 Jun 2023 23:51:08 +0200 Subject: [PATCH] Use nix instead of a go based image --- .gitlab-ci.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index 8df6bf2..31313e6 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -4,6 +4,6 @@ stages: run-tests: stage: test - image: golang:1.19 + image: nixos/nix:latest script: - - make test + - nix-shell --run make test