Remove extra semicolons at the end of java statements #230
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 | |
- name: 'Validate tests' | |
working-directory: ./cbioportal-core | |
run: | | |
docker run -v ${PWD}:/cbioportal-core python:3.6 /bin/sh -c ' | |
cd cbioportal-core && | |
pip install -r requirements.txt && | |
./test_scripts.sh' |