add no_default_features test to CI (allow fail)

feat/vaults
Tomáš Mládek 2021-12-27 13:23:23 +01:00
parent 9d06e25d11
commit 353f2448b4
No known key found for this signature in database
GPG Key ID: ED21612889E75EC5
2 changed files with 16 additions and 0 deletions

View File

@ -83,6 +83,19 @@ test:backend:
- Cargo.lock
- Makefile
test:backend_no_default_features:
stage: test
image: $RUST_IMAGE
script:
- make backend_test_no_default
only:
changes:
- migrations/**/*
- src/**/*
- Cargo.lock
- Makefile
allow_failure: true # remove at v1.0
package:
stage: release
image: $RUST_IMAGE

View File

@ -33,6 +33,9 @@ frontend_lint:
backend_test:
cargo test --workspace --verbose
backend_test_no_default:
cargo test --no-default-features --workspace --verbose
clean:
rm -vr target
rm -vr ui/public/build