Skip to content

Publish package to PyPI #11

Publish package to PyPI

Publish package to PyPI #11

Workflow file for this run

name: vcf2maf-lite Tests
on: [push, pull_request]
jobs:
test:
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v4
- name: Set up Python
uses: actions/setup-python@v4
with:
python-version: '3.7'
- name: Install Poetry
run: |
python -m pip install --upgrade pip
pip install poetry
- name: Install dependencies
run: poetry install
- name: Set up environment
shell: bash
run: |
echo "PYTHONPATH=$(pwd)" >> $GITHUB_ENV
echo "$(poetry env info --path)/bin" >> $GITHUB_PATH
- name: Run tests
run: python tests/vcf2maf_lite_tests.py