From f506eefe5e2f0f55bd2a32772de60c299cb816b5 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Daniel=20Ekl=C3=B6f?= Date: Sat, 22 Aug 2020 10:14:31 +0200 Subject: [PATCH] ci: gitlab: pip install codespell Alpine has no codespell package --- .gitlab-ci.yml | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index b7214de3..f2583371 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -60,5 +60,6 @@ codespell: image: alpine:edge stage: build script: - - apk add codespell + - apk add python + - pip install codespell - codespell *.c *.h