build(woodpecker): enable fs and network for build and test
All checks were successful
ci/woodpecker/push/woodpecker Pipeline was successful
All checks were successful
ci/woodpecker/push/woodpecker Pipeline was successful
This commit is contained in:
parent
9339958996
commit
68f419459f
1 changed files with 3 additions and 3 deletions
|
@ -37,8 +37,8 @@ steps:
|
||||||
commands:
|
commands:
|
||||||
- ls -l /usr/local/cargo/bin/
|
- ls -l /usr/local/cargo/bin/
|
||||||
- cargo fmt --all -- --check
|
- cargo fmt --all -- --check
|
||||||
- cargo clippy -- -D warnings -W clippy::nursery -W clippy::unwrap_used -W clippy::expect_used
|
- cargo clippy --features "fs,network" -- -D warnings -W clippy::nursery -W clippy::unwrap_used -W clippy::expect_used
|
||||||
- cargo build
|
- cargo build --features "fs,network"
|
||||||
|
|
||||||
test:
|
test:
|
||||||
when:
|
when:
|
||||||
|
@ -50,7 +50,7 @@ steps:
|
||||||
environment:
|
environment:
|
||||||
CARGO_TERM_COLOR: always
|
CARGO_TERM_COLOR: always
|
||||||
commands:
|
commands:
|
||||||
- cargo test
|
- cargo test --features "fs,network"
|
||||||
|
|
||||||
publish_to_crates_io:
|
publish_to_crates_io:
|
||||||
when:
|
when:
|
||||||
|
|
Loading…
Reference in a new issue