From 9714ab095e76a74daa4f40559f214f35a55d826e Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Aur=C3=A9lien=20Delval?= Date: Mon, 26 Jul 2021 08:12:48 +0200 Subject: [PATCH] Tentative to fix CI - Create alias to python command - Install emacs in workflow --- .github/workflows/vfc_test_workflow.yml | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/.github/workflows/vfc_test_workflow.yml b/.github/workflows/vfc_test_workflow.yml index ab799d6..4c1b29e 100644 --- a/.github/workflows/vfc_test_workflow.yml +++ b/.github/workflows/vfc_test_workflow.yml @@ -21,6 +21,11 @@ jobs: with: fetch-depth: 0 + - name: Install dependencies + run: | + alias python='python3' + apt -y install emacs + - name: Run tests run: vfc_ci test -g -r @@ -42,4 +47,4 @@ jobs: uses: actions/upload-artifact@v2 with: name: ${{github.sha}}.vfcraw - path: ./*.vfcraw.h5 \ No newline at end of file + path: ./*.vfcraw.h5