Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
P
picodata
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Container Registry
Model registry
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
core
picodata
Merge requests
!142
feat: introduce Makefile
Code
Review changes
Check out branch
Download
Patches
Plain diff
Merged
feat: introduce Makefile
makefile
into
master
Overview
2
Commits
1
Pipelines
4
Changes
1
All threads resolved!
Show all comments
Merged
Valentin Syrovatskiy
requested to merge
makefile
into
master
2 years ago
Overview
2
Commits
1
Pipelines
4
Changes
1
All threads resolved!
Show all comments
Expand
0
0
Merge request reports
Compare
master
version 3
76219d4e
2 years ago
version 2
893ec467
2 years ago
version 1
266975a4
2 years ago
master (base)
and
latest version
latest version
27dedfbe
1 commit,
2 years ago
version 3
76219d4e
1 commit,
2 years ago
version 2
893ec467
1 commit,
2 years ago
version 1
266975a4
1 commit,
2 years ago
1 file
+
13
−
0
Inline
Compare changes
Side-by-side
Inline
Show whitespace changes
Show one file at a time
Makefile
0 → 100644
+
13
−
0
Options
.PHONY
:
default lint test
default
:
;
lint
:
cargo
fmt
--check
cargo check
cargo clippy
--
--deny
clippy::all
pipenv run lint
test
:
cargo
test
pipenv run pytest
Loading