chg: Yet another attempt to clone a repo

pull/9303/head
Raphaël Vinot 2023-09-22 14:26:32 +02:00
parent a95816d039
commit 0761107f23
1 changed files with 8 additions and 2 deletions

View File

@ -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