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:
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

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 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]