disable nightly clippy checks

This commit is contained in:
collin 2021-02-01 10:45:55 -08:00
parent 4f4d0d051d
commit f259828097
2 changed files with 7 additions and 8 deletions

View File

@ -43,7 +43,7 @@ jobs:
matrix: matrix:
rust: rust:
- stable - stable
- nightly # - nightly
steps: steps:
- name: Checkout - name: Checkout
@ -70,12 +70,12 @@ jobs:
args: --examples --all-features --all args: --examples --all-features --all
if: matrix.rust == 'stable' if: matrix.rust == 'stable'
- name: Check benchmarks on nightly # - name: Check benchmarks on nightly
uses: actions-rs/cargo@v1 # uses: actions-rs/cargo@v1
with: # with:
command: clippy # command: clippy
args: --all-features --examples --all --benches # args: --all-features --examples --all --benches
if: matrix.rust == 'nightly' # if: matrix.rust == 'nightly'
test: test:
name: Test name: Test

View File

@ -20,7 +20,6 @@
//! The [`Grammar`] type is the datatype generated by the pest parser using grammar from `leo.pest`. //! 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 //! The [`Grammar`] type is intended to be parsed into a [`Ast`]. It should not be parsed by
//! any other pass of the compiler. //! any other pass of the compiler.
#![allow(clippy::upper_case_acronyms)]
#[macro_use] #[macro_use]
extern crate lazy_static; extern crate lazy_static;
#[macro_use] #[macro_use]