27 lines
607 B
YAML
27 lines
607 B
YAML
name: Test pipeline
|
|
|
|
on: [push]
|
|
jobs:
|
|
test:
|
|
runs-on: docker
|
|
container:
|
|
image: python:3
|
|
steps:
|
|
- name: Check out repository
|
|
run: |
|
|
git clone --depth 1 --branch main https://git.athemis.de/Athemis/doi2dataset.git
|
|
|
|
- name: Install dependencies
|
|
run: |
|
|
cd doi2dataset
|
|
pip install --upgrade pip
|
|
pip install -r requirements.txt
|
|
pip install -r requirements-dev.txt
|
|
|
|
- name: Copy example config
|
|
run: |
|
|
cp config_example.yaml config.yaml
|
|
|
|
- name: Run tests
|
|
run: |
|
|
pytest
|