mirror of
https://github.com/ProvableHQ/leo.git
synced 2024-12-25 03:04:13 +03:00
disable nightly clippy checks
This commit is contained in:
parent
4f4d0d051d
commit
f259828097
14
.github/workflows/ci.yml
vendored
14
.github/workflows/ci.yml
vendored
@ -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
|
||||
|
@ -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]
|
||||
|
Loading…
Reference in New Issue
Block a user