8 lines
129 B
Bash
Executable file
8 lines
129 B
Bash
Executable file
#!/bin/bash
|
|
set -eu
|
|
|
|
cargo fmt --all -- --check
|
|
cargo check --all-features
|
|
cargo clippy
|
|
|
|
cargo run --bin example_glium --release
|