mirror of https://codeberg.org/topola/topola.git
18 lines
399 B
YAML
18 lines
399 B
YAML
# SPDX-FileCopyrightText: 2024 Topola contributors
|
|
#
|
|
# SPDX-License-Identifier: MIT
|
|
|
|
steps:
|
|
check_formatting:
|
|
image: rust
|
|
environment:
|
|
RUST_BACKTRACE: 1
|
|
CARGO_TERM_COLOR: always
|
|
commands:
|
|
- cargo install committed
|
|
- committed develop..HEAD
|
|
- rustup component add rustfmt
|
|
- cargo fmt --all -- --check
|
|
when:
|
|
event: [pull_request, push, tag]
|