doi2dataset/.forgejo/workflows/run_tests.yaml
Alexander Minges 1b1c718ece
Some checks failed
Test pipeline / test (push) Failing after 3s
Update run_tests.yaml
2025-03-21 15:51:23 +01:00

22 lines
476 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: |
pip install -r requirements.txt
pip install -r requirements-dev.txt
- name: Run tests
run: |
cd doi2dataset
pytest