Skip to content

[Tumor_Gene_Target_Screener]: Windows Fix #1801

[Tumor_Gene_Target_Screener]: Windows Fix

[Tumor_Gene_Target_Screener]: Windows Fix #1801

Workflow file for this run

name: Validate appyter
on:
pull_request:
paths:
- 'appyters/**'
jobs:
test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Set up Python
uses: actions/setup-python@v1
with:
python-version: '3.8.x'
- name: Install python dependencies
run: |
python -m pip install --upgrade pip
pip install -r validate/requirements.txt
pip install -r compose/requirements.txt
- name: Running validate merge
run: |
URL="https://api.github.com/repos/${GITHUB_REPOSITORY}/pulls/${{ github.event.pull_request.number }}/files"
curl -s -X GET -G $URL | python validate/validate_merge.py -v --github-action