1
0
Fork 0
mirror of https://gitlab.com/msrd0/gotham-restful.git synced 2025-02-22 12:42:28 +00:00

update trybuild rust version and rustfmt

This commit is contained in:
Dominic 2021-02-17 03:39:49 +01:00
parent 1bd398c7ee
commit 3b95b9f495
Signed by: msrd0
GPG key ID: DCC8C247452E98F9
2 changed files with 9 additions and 4 deletions

View file

@ -59,7 +59,7 @@ test-tarpaulin:
test-trybuild-ui:
stage: test
image: rust:1.49-slim
image: rust:1.50-slim
before_script:
- apt update -y
- apt install -y --no-install-recommends libpq-dev
@ -67,7 +67,7 @@ test-trybuild-ui:
script:
- cargo test --no-default-features --features full --tests -- --ignored
cache:
key: cargo-1-49-all
key: cargo-1-50-all
paths:
- cargo/
- target/
@ -81,8 +81,13 @@ readme:
rustfmt:
stage: test
image: iamsauravsharma/rust-fmt:nightly-alpine
image:
name: alpine:3.13
before_script:
- apk add rustup
- rustup-init -qy --default-host x86_64-unknown-linux-musl --default-toolchain none </dev/null
- source $CARGO_HOME/env
- rustup toolchain install nightly --profile minimal --component rustfmt
- cargo -V
- cargo fmt --version
script:

View file

@ -13,7 +13,7 @@ trailing_comma = "Never"
# misc
format_code_in_doc_comments = true
merge_imports = true
imports_granularity = "Crate"
overflow_delimited_expr = true
use_field_init_shorthand = true
use_try_shorthand = true