doi2dataset/.forgejo/workflows/run_tests.yaml
Alexander Minges 5cd8b5ae97
Some checks failed
Test pipeline / test (push) Failing after 5s
Update run_tests.yaml
2025-03-21 15:50:43 +01:00

23 lines
522 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: |
python -m pip install --upgrade pip
pip install -r requirements.txt
pip install -r requirements-dev.txt
- name: Run tests
run: |
cd doi2dataset
pytest