initial commit, empty rocket server
This commit is contained in:
commit
27d02a0d5c
11 changed files with 2980 additions and 0 deletions
17
.woodpecker/rust.yml
Normal file
17
.woodpecker/rust.yml
Normal file
|
|
@ -0,0 +1,17 @@
|
|||
variables:
|
||||
- &rust_image 'rust:1.67'
|
||||
|
||||
pipeline:
|
||||
build:
|
||||
image: *rust_image
|
||||
commands:
|
||||
# setup
|
||||
- rm rust-toolchain.toml # use default installed toolchain
|
||||
- rustup show
|
||||
|
||||
# test
|
||||
- cargo test
|
||||
|
||||
# clippy
|
||||
- rustup component add clippy
|
||||
- cargo clippy
|
||||
Loading…
Add table
Add a link
Reference in a new issue