From 14a6569cd8d2d79f81c5021dfef3927607023b3a Mon Sep 17 00:00:00 2001 From: Victor Mignot Date: Sun, 20 Nov 2022 23:49:05 -0500 Subject: [PATCH] Remove github pipeline --- .github/workflows/code-quality.yml | 32 ------------------------------ 1 file changed, 32 deletions(-) delete mode 100644 .github/workflows/code-quality.yml diff --git a/.github/workflows/code-quality.yml b/.github/workflows/code-quality.yml deleted file mode 100644 index 96ae92c..0000000 --- a/.github/workflows/code-quality.yml +++ /dev/null @@ -1,32 +0,0 @@ -name: Code Quality - -on: - pull_request: - branches: [ "main" ] - push: - branches: [ "main" ] - -jobs: - code-check: - runs-on: ubuntu-latest - steps: - - uses: actions/checkout@v3 - - - name: Installing Rust toolchain - uses: actions-rs/toolchain@v1 - with: - toolchain: stable - override: true - components: rustfmt, clippy - - - name: Format - run: cargo fmt --check - - - name: Lint - run: cargo clippy - - - name: Tests - run: cargo test - - - name: Build - run: cargo build --verbose