mirror of
https://github.com/mCaptcha/cache.git
synced 2024-11-21 16:25:19 +03:00
udpate docs command
This commit is contained in:
parent
03d8e5c10b
commit
17c2fcacd9
2 changed files with 5 additions and 4 deletions
2
.github/workflows/linux.yml
vendored
2
.github/workflows/linux.yml
vendored
|
@ -80,7 +80,7 @@ jobs:
|
|||
|
||||
- name: generate documentation
|
||||
if: matrix.version == 'stable' && (github.repository == 'mcaptcha/cache')
|
||||
run: make docs
|
||||
run: make doc
|
||||
|
||||
# - name: generate documentation
|
||||
# if: matrix.version == 'stable' && (github.repository == 'realaravinth/damn-vuln-blockchain')
|
||||
|
|
7
Makefile
7
Makefile
|
@ -30,8 +30,6 @@ stop-redis-server:
|
|||
dev-env:
|
||||
./scripts/setup.sh
|
||||
|
||||
docs:
|
||||
cargo doc --no-deps --workspace --all-features
|
||||
|
||||
xml-test-coverage:
|
||||
cargo tarpaulin -t 1200 --out Xml --all --all-features --no-fail-fast
|
||||
|
@ -41,6 +39,9 @@ coverage:
|
|||
dev:
|
||||
cargo build
|
||||
|
||||
doc:
|
||||
cargo doc --no-deps --workspace --all-features
|
||||
|
||||
clean:
|
||||
cargo clean
|
||||
|
||||
|
@ -51,7 +52,7 @@ help:
|
|||
@echo ' docker-run - run docker container'
|
||||
@echo ' docker-stop - stop docker container'
|
||||
@echo ' dev-env - setup dev env'
|
||||
@echo ' docs - build documentation'
|
||||
@echo ' doc - build documentation'
|
||||
@echo ' clean - drop builds and environments'
|
||||
@echo ' coverage - build test coverage in HTML format'
|
||||
@echo ' xml-coverage - build test coverage in XML for upload to codecov'
|
||||
|
|
Loading…
Reference in a new issue