From be8731bce60e5f0256f49b741c3ec2b1326db7b3 Mon Sep 17 00:00:00 2001 From: Alex Fabre Date: Mon, 6 Oct 2025 13:19:22 +0200 Subject: [PATCH] ci: install requirements through dedicated file Instead of installing codespell manually, install through 'requirements.txt' Signed-off-by: Alex Fabre --- .github/workflows/commit-format.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/commit-format.yml b/.github/workflows/commit-format.yml index 75a1388..76ad7d9 100644 --- a/.github/workflows/commit-format.yml +++ b/.github/workflows/commit-format.yml @@ -17,7 +17,7 @@ jobs: - name: Install dependencies run: | python -m pip install --upgrade pip - pip install codespell + pip install -r requirements.txt - name: commit-format run: | git fetch --no-tags --depth=1 origin main