From 7d8579c5e0f3487b33d6c66211c195336357e407 Mon Sep 17 00:00:00 2001 From: Demur Rumed Date: Thu, 16 Nov 2023 15:22:30 +0000 Subject: [PATCH 1/5] test --- .github/workflows/rust-lint.yml | 2 -- 1 file changed, 2 deletions(-) diff --git a/.github/workflows/rust-lint.yml b/.github/workflows/rust-lint.yml index 3e67d54be..96be0b216 100644 --- a/.github/workflows/rust-lint.yml +++ b/.github/workflows/rust-lint.yml @@ -18,8 +18,6 @@ jobs: steps: - name: checkout uses: actions/checkout@v4 - with: - submodules: recursive - uses: dtolnay/rust-toolchain@stable with: From 1be97adc261967debf6e7891335903c4e70a76ec Mon Sep 17 00:00:00 2001 From: Demur Rumed Date: Thu, 16 Nov 2023 15:30:41 +0000 Subject: [PATCH 2/5] test2 --- .github/workflows/rust-lint.yml | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/.github/workflows/rust-lint.yml b/.github/workflows/rust-lint.yml index 96be0b216..bf56b4d67 100644 --- a/.github/workflows/rust-lint.yml +++ b/.github/workflows/rust-lint.yml @@ -18,11 +18,17 @@ jobs: steps: - name: checkout uses: actions/checkout@v4 + with: + submodules: recursive - uses: dtolnay/rust-toolchain@stable with: components: clippy + - name: disable clippy for sqlparser-rs + run: echo -e "\n#![allow(clippy)]" >> nexus/sqlparser-rs/src/lib.rs + + - name: clippy run: cargo clippy -- -D warnings working-directory: ./nexus From 24da9f565a9a7bf1004e33755e1510539cfab5d1 Mon Sep 17 00:00:00 2001 From: Demur Rumed Date: Thu, 16 Nov 2023 15:33:31 +0000 Subject: [PATCH 3/5] test3 --- .github/workflows/rust-lint.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/rust-lint.yml b/.github/workflows/rust-lint.yml index bf56b4d67..0416594f0 100644 --- a/.github/workflows/rust-lint.yml +++ b/.github/workflows/rust-lint.yml @@ -26,7 +26,7 @@ jobs: components: clippy - name: disable clippy for sqlparser-rs - run: echo -e "\n#![allow(clippy)]" >> nexus/sqlparser-rs/src/lib.rs + run: sed -i '1s/^/#![allow(clippy)]/' nexus/sqlparser-rs/src/lib.rs - name: clippy From e3211d218fd0eb7f85c3288056c8d25e58e16052 Mon Sep 17 00:00:00 2001 From: Demur Rumed Date: Thu, 16 Nov 2023 15:36:53 +0000 Subject: [PATCH 4/5] test4 --- .github/workflows/rust-lint.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/rust-lint.yml b/.github/workflows/rust-lint.yml index 0416594f0..42b890ec7 100644 --- a/.github/workflows/rust-lint.yml +++ b/.github/workflows/rust-lint.yml @@ -26,7 +26,7 @@ jobs: components: clippy - name: disable clippy for sqlparser-rs - run: sed -i '1s/^/#![allow(clippy)]/' nexus/sqlparser-rs/src/lib.rs + run: sed -i '1s/^/#![allow(clippy::all)]\n/' nexus/sqlparser-rs/src/lib.rs - name: clippy From 44193436d5dc82a99cf77bc4b8c136b7a0a2a172 Mon Sep 17 00:00:00 2001 From: Demur Rumed Date: Thu, 16 Nov 2023 15:39:11 +0000 Subject: [PATCH 5/5] remove blank line --- .github/workflows/rust-lint.yml | 1 - 1 file changed, 1 deletion(-) diff --git a/.github/workflows/rust-lint.yml b/.github/workflows/rust-lint.yml index 42b890ec7..3618a93ad 100644 --- a/.github/workflows/rust-lint.yml +++ b/.github/workflows/rust-lint.yml @@ -28,7 +28,6 @@ jobs: - name: disable clippy for sqlparser-rs run: sed -i '1s/^/#![allow(clippy::all)]\n/' nexus/sqlparser-rs/src/lib.rs - - name: clippy run: cargo clippy -- -D warnings working-directory: ./nexus