diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 8afe275808..ab07ada1dc 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -43,7 +43,7 @@ jobs: matrix: rust: - stable - - nightly +# - nightly steps: - name: Checkout @@ -70,12 +70,12 @@ jobs: args: --examples --all-features --all if: matrix.rust == 'stable' - - name: Check benchmarks on nightly - uses: actions-rs/cargo@v1 - with: - command: clippy - args: --all-features --examples --all --benches - if: matrix.rust == 'nightly' +# - name: Check benchmarks on nightly +# uses: actions-rs/cargo@v1 +# with: +# command: clippy +# args: --all-features --examples --all --benches +# if: matrix.rust == 'nightly' test: name: Test diff --git a/grammar/src/lib.rs b/grammar/src/lib.rs index 44ef72e4bf..15d26b9605 100644 --- a/grammar/src/lib.rs +++ b/grammar/src/lib.rs @@ -20,7 +20,6 @@ //! The [`Grammar`] type is the datatype generated by the pest parser using grammar from `leo.pest`. //! The [`Grammar`] type is intended to be parsed into a [`Ast`]. It should not be parsed by //! any other pass of the compiler. -#![allow(clippy::upper_case_acronyms)] #[macro_use] extern crate lazy_static; #[macro_use]