We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent a85f8df commit d8879ffCopy full SHA for d8879ff
.github/workflows/freebsd.yml
@@ -21,7 +21,10 @@ jobs:
21
copyback: false
22
prepare: pkg install -y bash curl lang/rust devel/llvm-devel
23
run: |
24
- cargo build --all --all-targets --verbose
+ cargo build --all --all-targets --verbose
25
+ cargo install cargo-deny
26
+ cargo deny check licenses
27
+ cargo deny check bans
28
curl https://sh.rustup.rs -sSf > rustup.sh
29
sh rustup.sh -y
30
. $HOME/.cargo/env
Makefile
@@ -200,6 +200,8 @@ pytest:
200
$(SHOW)MODULE=$(abspath $(TARGET)) $(realpath ./tests/pytest/tests.sh)
201
202
cargo_test:
203
+ $(SHOW)cargo deny check licenses
204
+ $(SHOW)cargo deny check bans
205
$(SHOW)cargo $(CARGO_TOOLCHAIN) test --all
206
207
.PHONY: pytest cargo_test
0 commit comments