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:
parent
caef84cebb
commit
674d833b15
1 changed files with 17 additions and 0 deletions
17
.github/workflows/test.yml
vendored
Normal file
17
.github/workflows/test.yml
vendored
Normal 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
|
Loading…
Add table
Add a link
Reference in a new issue