forked from nogibjj/Meron_Gedrago_mini_Week7
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathMakefile
65 lines (49 loc) · 1.27 KB
/
Makefile
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
rust-version:
@echo "Rust command-line utility versions:"
rustc --version #rust compiler
cargo --version #rust package manager
rustfmt --version #rust code formatter
rustup --version #rust toolchain manager
clippy-driver --version #rust linter
format:
cargo fmt --quiet
install:
# Install if needed
#@echo "Updating rust toolchain"
#rustup update stable
#rustup default stable
lint:
cargo clippy --quiet
test:
cargo test --quiet
run:
cargo run
release:
cargo build --release
all: format lint test run
python_install:
pip install --upgrade pip &&\
pip install -r requirements.txt
python_test:
python -m pytest -vv --cov=main --cov=mylib test_*.py
python_format:
black *.py
python_lint:
ruff check *.py
python_container-lint:
docker run --rm -i hadolint/hadolint < Dockerfile
python_refactor: format lint
python_deploy:
#deploy goes here
python_all: install lint test format deploy
generate_and_push:
# Add, commit, and push the generated files to GitHub
@if [ -n "$$(git status --porcelain)" ]; then \
git config --local user.email "action@github.com"; \
git config --local user.name "GitHub Action"; \
git add .; \
git commit -m "Add metric log"; \
git push; \
else \
echo "No changes to commit. Skipping commit and push."; \
fi