Skip to content

feat: add strict mode #11

feat: add strict mode

feat: add strict mode #11

Workflow file for this run

name: Unit Tests ⚙️
on: [ push, pull_request ]
permissions:
contents: read
packages: write
issues: write
pull-requests: write
jobs:
main:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: ["3.9", "3.10", "3.11", "3.12"]
steps:
- uses: actions/checkout@v4
- uses: actions/setup-python@v5
name: Setup Python ${{ matrix.python-version }}
with:
python-version: ${{ matrix.python-version }}
- name: Install requirements 📦
run: |
python3 -m pip install --upgrade pip
pip3 install .
pip3 install -r requirements-dev.txt
- name: run tests ⚙️
run: |
pytest