Skip to content

Paths again

Paths again #11

Workflow file for this run

name: Python validator
on: [push, pull_request]
jobs:
build:
name: Validate Data
runs-on: ubuntu-latest
steps:
- name: 'Checkout Code'
uses: actions/checkout@v4
with:
path: ./cbioportal-core

Check failure on line 13 in .github/workflows/validate-python.yml

View workflow run for this annotation

GitHub Actions / .github/workflows/validate-python.yml

Invalid workflow file

You have an error in your yaml syntax on line 13
- name: 'Validate tests'
working-directory: path: ./cbioportal-core
run: |
docker run -v ${PWD} python:3.6 /bin/sh -c '
pwd &&
ls -lart &&
pip install -r requirements.txt &&
export PYTHONPATH=/src/main/resources/scripts &&
cd /src/test/scripts/ &&
python unit_tests_validate_data.py &&
python system_tests_validate_data.py &&
python system_tests_validate_studies.py'