Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
17 changes: 5 additions & 12 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -73,7 +73,7 @@ Ensure you have the following installed on your system:

```bash
git clone <YOUR_REPOSITORY_URL>
cd mlops-iris-project
cd mlops-starter-project-iris
```

2. **Set Up Python Environment**
Expand Down