Skip to content

Merge pull request #10 from DataScientest-Studio/monitoring #16

Merge pull request #10 from DataScientest-Studio/monitoring

Merge pull request #10 from DataScientest-Studio/monitoring #16

Workflow file for this run

name: Unittest
on: [push]
jobs:
test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Set up Python
uses: actions/setup-python@v5
with:
python-version: '3.10'
- name: Install poetry
run: |
python -m pip install --upgrade pip
pip install poetry
poetry install
- name: Run unittest
run: poetry run pytest -s tests/test_dummy.py