doi2dataset/.forgejo/workflows/run_tests.yaml
Alexander Minges 53a1c271c6
Some checks failed
Test pipeline / test (push) Failing after 52s
Add test workflow
2025-03-21 15:33:27 +01:00

26 lines
539 B
YAML

name: Test pipeline
on: [push]
jobs:
test:
runs-on: docker
container:
image: python:3
steps:
- name: Check out repository
uses: actions/checkout@v4
- name: Set up Python
uses: actions/setup-python@v5
with:
python-version: "3.13"
- 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: |
pytest