1
0
Fork 0
mirror of https://github.com/qurator-spk/dinglehopper.git synced 2025-06-09 20:00:01 +02:00

🚧 GitHub Actions: Rework test, run in src/

This commit is contained in:
Mike Gerber 2023-08-04 16:35:36 +02:00
parent 77bcecd2d0
commit ab1359c7e6

View file

@ -14,7 +14,11 @@ jobs:
steps: steps:
- name: Checkout - name: Checkout
uses: actions/checkout@v3 uses: actions/checkout@v3
- name: Build package
run: python3 -m pip install --upgrade build && python3 -m build - name: Update pip
run: python3 -m pip install -U pip
- name: Install requirements*
run: python3 -m pip install -r requirements*.txt
- name: Test - name: Test
run: python3 -m pip install -r requirements-dev.txt && pytest run: cd src && python3 -m pytest