Skip to content

Merge pull request #83 from biocypher/ci #97

Merge pull request #83 from biocypher/ci

Merge pull request #83 from biocypher/ci #97

Workflow file for this run

name: CI
on:
pull_request:
branches: [ main ]
push:
branches: [ main ]
jobs:
test:
runs-on: ubuntu-latest
environment: 'Test CI'
steps:
- name: Checkout code
uses: actions/checkout@v4
- name: Set up Python
uses: actions/setup-python@v4
with:
python-version: 3.11
- name: Install Poetry
run: |
curl -sSL https://install.python-poetry.org | python3 -
- name: Install dependencies
run: |
poetry install
poetry install -E 'podcast xinference'
- name: Run tests
run: |
poetry run pytest test --ignore=./volumes