Skip to content

add ci

add ci #59

Workflow file for this run

on:
push:
branches:
- main
- develop
pull_request:
branches:
- develop
jobs:
test:
runs-on: ubuntu-latest
env:
VIP_API_KEY: ${{ secrets.VIP_API_KEY }}
steps:
- name: Checkout repository
uses: actions/checkout@v4
- name: Set up Python 3.9
uses: actions/setup-python@v4
with:
python-version: 3.9
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install pytest pytest_mock requests girder_client
- name: Run Pytest
run: |
pytest