feat: cleaning the code removing dead part #118
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: CI | |
on: | |
push: | |
branches: | |
- 'dev' | |
pull_request: | |
branches: | |
- '*' | |
workflow_call: | |
jobs: | |
CI: | |
name: Launching CI | |
runs-on: ubuntu-latest | |
strategy: | |
matrix: | |
python-version: ['3.10'] | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Set up Python ${{ matrix.python-version }} | |
uses: actions/setup-python@v4 | |
with: | |
python-version: ${{ matrix.python-version }} | |
- name: Install poetry | |
run: make download-poetry | |
- name: Install requirements | |
run: | | |
poetry install | |
- name: Run Pre commit hooks | |
run: make format-code | |
- name: Run Tests | |
run: poetry run pytest tests |