From 4847e65a16745310174528942db9a4e5007c9f3a Mon Sep 17 00:00:00 2001 From: pooriya adib rad Date: Thu, 24 Jul 2025 05:27:07 +0330 Subject: [PATCH] Update main.yml --- .github/workflows/main.yml | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index 1bd8001..5bcf545 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -30,19 +30,19 @@ jobs: pip install -r requirements.txt pip install -r requirements-dev.txt -# - name: Lint with flake8 -# run: flake8 . + - name: Lint with flake8 + run: flake8 . -# - name: Format check with black -# run: black --check . + - name: Format check with black + run: black --check . -# - name: Type check with mypy -# run: mypy . + - name: Type check with mypy + run: mypy . -# - name: Run tests with coverage -# run: pytest --cov=./ --cov-report=xml --cov-report=term + - name: Run tests with coverage + run: pytest --cov=./ --cov-report=xml --cov-report=term - # - name: Upload coverage to Codecov - # uses: codecov/codecov-action@v3 - # with: - # files: ./coverage.xml + - name: Upload coverage to Codecov + uses: codecov/codecov-action@v3 + with: + files: ./coverage.xml