From 143c2cfb861463a99ca4afd02920cfc114630b4d Mon Sep 17 00:00:00 2001 From: Adrien DELSALLE Date: Fri, 7 Jul 2023 09:49:12 +0200 Subject: [PATCH] start 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 5e8a5c5..d2ce9dc 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 + eval `ssh-agent -s` echo "${TOKEN}" | ssh-add - pip install flake8 pytest if [ -f requirements.txt ]; then pip install -r requirements.txt; fi