From 0bb9485e4d38d011cdb3a7cb8c4148b30a4049e5 Mon Sep 17 00:00:00 2001 From: nag763 Date: Sun, 2 Jun 2024 17:14:00 +0200 Subject: [PATCH] Update workflow as most of it is not relevant --- .github/workflows/ci.yml | 46 ---------------------------------------- 1 file changed, 46 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 3cc329d..f55b1e6 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -21,49 +21,3 @@ jobs: with: command: test args: --lib - fmt: - name: Rustfmt - runs-on: ubuntu-latest - steps: - - uses: actions/checkout@v2 - - uses: actions-rs/toolchain@v1 - with: - toolchain: stable - override: true - components: rustfmt - - uses: actions-rs/cargo@v1 - with: - command: fmt - args: --all -- --check - clippy: - name: Clippy - runs-on: ubuntu-latest - steps: - - uses: actions/checkout@v2 - - uses: actions-rs/toolchain@v1 - with: - toolchain: stable - override: true - components: clippy - - uses: actions-rs/clippy-check@v1 - with: - token: ${{ secrets.GITHUB_TOKEN }} - args: --features mysql_addons,sqlite_addons -- -D warnings - - coverage: - name: Code coverage - runs-on: ubuntu-latest - steps: - - name: Checkout repository - uses: actions/checkout@v2 - - - name: Install stable toolchain - uses: actions-rs/toolchain@v1 - with: - toolchain: stable - override: true - - - name: Run cargo-tarpaulin - uses: actions-rs/tarpaulin@v0.1 - with: - args: '--ignore-tests'