From fcb17b19e4ea86d104d26fce06c91b33ca2439e3 Mon Sep 17 00:00:00 2001 From: Adrien DELSALLE Date: Fri, 7 Jul 2023 09:47:32 +0200 Subject: [PATCH] add token to ssh agent --- .github/workflows/commit-verification.yml | 1 + 1 file changed, 1 insertion(+) diff --git a/.github/workflows/commit-verification.yml b/.github/workflows/commit-verification.yml index 461062a..5e8a5c5 100644 --- a/.github/workflows/commit-verification.yml +++ b/.github/workflows/commit-verification.yml @@ -16,6 +16,7 @@ jobs: - name: Add dependencies run: | python -m pip install --upgrade pip + echo "${TOKEN}" | ssh-add - pip install flake8 pytest if [ -f requirements.txt ]; then pip install -r requirements.txt; fi - name: Run precommit