• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1#!/bin/bash
2# Check our code passes formatting and lint checks.
3
4set -ex
5
6# Change to our project home.
7script_dir=`dirname "${BASH_SOURCE[0]}"`
8cd "$script_dir"/..
9
10scripts/check.sh
11RUSTFLAGS="--deny warnings" cargo +nightly build --features=lint
12