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

🚧 GitHub Actions: Add test worklow

This commit is contained in:
Mike Gerber 2023-08-04 16:12:33 +02:00
parent caef84cebb
commit 674d833b15

17
.github/workflows/test.yml vendored Normal file
View file

@ -0,0 +1,17 @@
name: release
on:
push:
branches:
- master
jobs:
test:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v3
- name: Build package
run: python3 -m pip install --upgrade build && python3 -m build
- name: Test
run: python3 -m pip install -r requirements-dev.txt && pytest