diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index a9d062f..77e2607 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -27,15 +27,8 @@ jobs: - name: Install dependencies run: make install - - name: Run linters and type checker - run: | - make lint - make mypy - - - name: Check formatting - run: make format-check - - - name: Run tests - run: | - make test - make test-cov + - name: Run code quality checks (Linting, Formatting Check, Type Check, Pre-commit hooks) + run: make check-all + + - name: Run tests with coverage + run: make test-cov diff --git a/README.md b/README.md index 9f9ebe4..c7e1d34 100644 --- a/README.md +++ b/README.md @@ -73,7 +73,7 @@ Ensure you have the following installed on your system: ```bash git clone - cd mlops-iris-project + cd mlops-starter-project-iris ``` 2. **Set Up Python Environment**