From 8c7977cb4a43de73154d91706ba7321881e5c8d7 Mon Sep 17 00:00:00 2001 From: Jakob Keller <57402305+jakob-keller@users.noreply.github.com> Date: Fri, 23 Aug 2024 22:47:55 +0200 Subject: [PATCH] remove time statements from CI/CD workflow --- .github/workflows/ci-cd.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/ci-cd.yml b/.github/workflows/ci-cd.yml index 0f033ee1..b68e0da0 100644 --- a/.github/workflows/ci-cd.yml +++ b/.github/workflows/ci-cd.yml @@ -70,8 +70,8 @@ jobs: - name: Lock and sync dependencies run: | python -m pip install -U pip pip-tools - time pip-compile requirements-dev.in - time pip-sync requirements-dev.txt + pip-compile requirements-dev.in + pip-sync requirements-dev.txt - name: Run pre-commit hooks run: | make pre-commit