Skip to content

multi-file input arguments, collection name from 'Parent ARK' #67

multi-file input arguments, collection name from 'Parent ARK'

multi-file input arguments, collection name from 'Parent ARK' #67

Workflow file for this run

name: Run CI Suite
on:
push:
branches: [ main ]
pull_request:
branches: [ main ]
env:
DEFAULT_PYTHON_VERSION: 3.11
jobs:
black:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/setup-python@v2
with:
python-version: ${{ env.DEFAULT_PYTHON_VERSION }}
- run: pip install black
- run: black --check .
pytest:
strategy:
matrix:
python-version: ['3.8', '3.9', '3.10', '3.11', '3.12', '3.13']
runs-on: ubuntu-latest
env:
SOLR_URL: http://127.0.0.1:6983/solr/californica
steps:
- uses: actions/checkout@v3
- name: Set up Docker Compose
run: |
sudo apt-get update
sudo apt-get install -y docker-compose
- run: docker-compose up --detach solr
- uses: actions/setup-python@v4
with:
python-version: ${{ matrix.python-version }}
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install poetry
poetry install --only main,test
- run: poetry run pytest