https://gitlab.com/tezos/tezos
Raw File
Tip revision: 0d41817b41bcac2d67485ff6b876dcd5158351f4 authored by Arvid Jakobsson on 10 January 2024, 14:58:49 UTC
CI: document job filename policy
Tip revision: 0d41817
check-format-rust.sh
#!/bin/sh

set -e

# shellcheck disable=SC2016
git ls-files -z '**/Cargo.lock' ':!:contrib' |
  xargs -0 -I{} sh -c 'cd $(dirname {}) && cargo fmt --check'
back to top