From a4c3c8940824da55bfcc2fc3d112b4e1486b6668 Mon Sep 17 00:00:00 2001 From: Backpack Exchange Bot <153049611+backpack-exchange-bot@users.noreply.github.com> Date: Tue, 7 Jan 2025 16:31:40 +0900 Subject: [PATCH] Remove extra action (#13) * remove extra github action * clean up --- .github/workflows/audit.yml | 3 ++- .github/workflows/{rust.yml => ci.yml} | 13 ------------- 2 files changed, 2 insertions(+), 14 deletions(-) rename .github/workflows/{rust.yml => ci.yml} (73%) diff --git a/.github/workflows/audit.yml b/.github/workflows/audit.yml index 151e009..5af06fa 100644 --- a/.github/workflows/audit.yml +++ b/.github/workflows/audit.yml @@ -1,4 +1,4 @@ -name: audit +name: Audit on: push: @@ -7,6 +7,7 @@ on: - "**/Cargo.lock" schedule: - cron: "0 0 * * *" + workflow_dispatch: jobs: audit: diff --git a/.github/workflows/rust.yml b/.github/workflows/ci.yml similarity index 73% rename from .github/workflows/rust.yml rename to .github/workflows/ci.yml index 1000d99..297a31a 100644 --- a/.github/workflows/rust.yml +++ b/.github/workflows/ci.yml @@ -39,16 +39,3 @@ jobs: - name: Run tests run: cargo test working-directory: rust - - fmt: - name: Rustfmt - runs-on: ubuntu-latest - steps: - - uses: actions/checkout@v2 - - uses: actions-rs/toolchain@v1 - with: - toolchain: stable - override: true - components: rustfmt - - run: cargo fmt --all -- --check - working-directory: rust