diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index fa2b64eac..8079ff018 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -6,51 +6,6 @@ env: CARGO_TERM_COLOR: always jobs: - rustfmt: - runs-on: ubuntu-latest - steps: - - name: Checkout repository - uses: actions/checkout@v3 - - name: Install Rust - uses: actions-rs/toolchain@v1 - with: - toolchain: stable - override: true - profile: minimal - components: rustfmt - - name: Check formatting - run: | - cargo fmt --all -- --check - - clippy: - runs-on: ubuntu-latest - steps: - - name: Checkout repository - uses: actions/checkout@v3 - - name: Install Rust - uses: actions-rs/toolchain@v1 - with: - toolchain: stable - override: true - profile: minimal - components: clippy - - name: Run Clippy - run: | - cargo clippy -- -D warnings - - checks: - runs-on: ubuntu-latest - steps: - - name: Checkout repository - uses: actions/checkout@v3 - - name: Check Shell Scripts - run: | - find -name *.sh | xargs shellcheck - - name: Check Python Scripts - run: | - pip3 install black - black --check . - benchsuite: runs-on: ubuntu-latest steps: