mirror of
https://gitlab.com/fabinfra/fabaccess/bffh.git
synced 2024-11-21 22:47:55 +01:00
only run pipeline for master, develop branches and merge requests
This commit is contained in:
parent
cf723e8817
commit
898725a96a
@ -29,6 +29,10 @@ lint:clippy:
|
||||
script:
|
||||
- rustc --version && cargo --version # Print version info for debugging
|
||||
- cargo clippy -- -D warnings
|
||||
only:
|
||||
- master
|
||||
- development
|
||||
- merge_requests
|
||||
|
||||
# Use rustfmt to check formating of the project
|
||||
lint:fmt:
|
||||
@ -36,12 +40,20 @@ lint:fmt:
|
||||
script:
|
||||
- rustc --version && cargo --version # Print version info for debugging
|
||||
- cargo fmt -- --check # TODO: Do we want to enforce formating?
|
||||
only:
|
||||
- master
|
||||
- development
|
||||
- merge_requests
|
||||
|
||||
# Use cargo to test the project
|
||||
test:cargo:
|
||||
script:
|
||||
- rustc --version && cargo --version # Print version info for debugging
|
||||
- cargo test --workspace --verbose
|
||||
only:
|
||||
- master
|
||||
- development
|
||||
- merge_requests
|
||||
|
||||
|
||||
# cache dependencies and build environment to speed up setup
|
||||
|
Loading…
Reference in New Issue
Block a user