mirror of
https://github.com/ProvableHQ/leo.git
synced 2024-12-26 03:33:44 +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:
|
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
|
||||||
|
@ -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]
|
||||||
|
Loading…
Reference in New Issue
Block a user