Dev 5.2.1 (#1)

Reviewed-on: #1
Co-authored-by: aurelien.vaillant <availlant@miraculouscorp.com>
Co-committed-by: aurelien.vaillant <availlant@miraculouscorp.com>
This commit was merged in pull request #1.
This commit is contained in:
2026-07-08 19:21:14 +02:00
committed by stilobique
parent a59f3938bd
commit 5d17ec9da1
15 changed files with 22 additions and 22 deletions
+28
View File
@@ -0,0 +1,28 @@
name: Unit Test
on:
workflow_call:
push:
branches-ignore:
- main
- develop
jobs:
unit-test:
name: Unit Test
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@main
- uses: actions/setup-python@v2
with:
python-version: "3.10"
- name: Setup python to execute all Unit Test
run: |
python -m pip install --upgrade pip
python -m pip install -r tests/requirements.txt
- name: Start all Unit Test
run: |
cd ${{ github.workspace }}
python tests/main.py