File tree Expand file tree Collapse file tree 5 files changed +8
-4
lines changed Expand file tree Collapse file tree 5 files changed +8
-4
lines changed Original file line number Diff line number Diff line change 1717 - name : Install Flit
1818 run : pip install flit
1919 - name : Install Dependencies
20- run : flit install --symlink
20+ run : make install
2121 - name : Install build dependencies
2222 run : pip install build
2323 - name : Build distribution
Original file line number Diff line number Diff line change 1818 - name : Install Flit
1919 run : pip install flit
2020 - name : Install Dependencies
21- run : flit install --symlink
21+ run : make install
2222 - name : Test
2323 run : pytest --cov=ninja_extra --cov-report=xml tests
2424 - name : Coverage
Original file line number Diff line number Diff line change 4646 - name : Install Flit
4747 run : pip install flit
4848 - name : Install Dependencies
49- run : flit install --symlink
49+ run : make install
5050 - name : Ruff Linting Check
5151 run : ruff check ninja_extra tests
5252 - name : mypy
Original file line number Diff line number Diff line change @@ -13,6 +13,10 @@ clean: ## Removing cached python compiled files
1313
1414install :clean # # Install dependencies
1515 pip install -r requirements.txt
16+ flit install --symlink
17+
18+ install-full : # # Install dependencies
19+ make install
1620 pre-commit install -f
1721
1822lint :fmt # # Run code linters
Original file line number Diff line number Diff line change @@ -28,7 +28,7 @@ Please take a moment to review the following guidelines before getting started.
28284 . ** Install Dependencies:** Install development libraries and pre-commit hooks.
2929
3030 ``` bash
31- make install
31+ make install-full
3232 ```
3333
3434### ** Code Style and Formatting**
You can’t perform that action at this time.
0 commit comments