All checks were successful
lint/clippy Checking for common mistakes and opportunities for code improvement
build/msvc Build for the target platform: msvc
build/linux Build for the target platform: linux
This includes using Gitea's Commit Status API to add checks to the PR UI.
7 lines
88 B
Bash
Executable file
7 lines
88 B
Bash
Executable file
#!/bin/sh
|
|
|
|
set -eux
|
|
|
|
rustup component add clippy
|
|
|
|
cargo clippy --color always --no-deps
|