From 0761107f2313b6d9dc45f76c1dc25eca3deb3890 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Rapha=C3=ABl=20Vinot?= Date: Fri, 22 Sep 2023 14:26:32 +0200 Subject: [PATCH] chg: Yet another attempt to clone a repo --- .github/workflows/main.yml | 10 ++++++++-- 1 file changed, 8 insertions(+), 2 deletions(-) diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index ecf2a17b4..f3ba69c19 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -26,7 +26,7 @@ jobs: # Steps represent a sequence of tasks that will be executed as part of the job steps: # Checks-out your repository under $GITHUB_WORKSPACE, so your job can access it - - uses: actions/checkout@v3 + - uses: actions/checkout@v4 with: submodules: 'recursive' @@ -243,6 +243,13 @@ jobs: ./app/Vendor/bin/parallel-lint --exclude app/Lib/cakephp/ --exclude app/Vendor/ --exclude app/Lib/random_compat/ -e php,ctp app/ sudo -u www-data ./app/Vendor/bin/phpunit app/Test/ + - name: Clone test files + uses: actions/checkout@v4 + with: + repository: viper-framework/viper-test-files + path: PyMISP/tests/viper-test-files + + - name: Run tests run: | pushd tests @@ -253,7 +260,6 @@ jobs: . ./venv/bin/activate pushd PyMISP - git clone https://github.com/viper-framework/viper-test-files.git tests/viper-test-files python tests/testlive_comprehensive.py python tests/test_mispevent.py popd