2023-07-29 20:36:03 +01:00
|
|
|
steps:
|
2023-07-25 16:58:17 +01:00
|
|
|
build:
|
2024-05-08 08:36:24 +01:00
|
|
|
when:
|
|
|
|
- event: push
|
|
|
|
branch: next
|
2023-07-29 20:36:03 +01:00
|
|
|
image: rust:latest
|
|
|
|
pull: true
|
2023-07-25 16:58:17 +01:00
|
|
|
commands:
|
|
|
|
- rustup component add rustfmt clippy
|
|
|
|
- cargo --version
|
|
|
|
- cargo fmt --check
|
|
|
|
- cargo clippy --fix -- -Dwarnings -W clippy::nursery -W clippy::unwrap_used -W clippy::expect_used
|
|
|
|
- cargo test
|
2024-05-08 08:36:24 +01:00
|
|
|
- cargo build
|