commit dabde03f50a461b3989657db7b07976bd09e9d64 parent b7619089441d63832ae3bd94a66947140fc38570 Author: Minerva_juppiter <94231606+minerva-jupiter@users.noreply.github.com> Date: Fri, 7 Nov 2025 22:19:26 +0900 Delete .github/workflows/testing.yml Diffstat:
| D | .github/workflows/testing.yml | | | 41 | ----------------------------------------- |
1 file changed, 0 insertions(+), 41 deletions(-)
diff --git a/.github/workflows/testing.yml b/.github/workflows/testing.yml @@ -1,41 +0,0 @@ -name: Rust Testing - -on: - pull_request: - push: - branches: [ main ] - workflow_dispatch: - workflow_call: - -env: - CARGO_TERM_COLOR: always - -jobs: - check: - name: Rustfmt - runs-on: ubuntu-latest - steps: - - uses: actions/checkout@v3 - - name: Cache Rust dependencies - uses: Swatinem/rust-cache@v2 - - name: Install Rust fmt - run: rustup component add rustfmt - - name: Install Rust clippy - run: rustup component add clippy - - name: Run rustfmt - run: cargo fmt --all -- --check - - name: Run clippy - run: cargo clippy --all-targets --all-features -- -D warnings - test: - name: Test - runs-on: ${{ matrix.os }} - needs: ["check"] - strategy: - matrix: - os: [ubuntu-latest, windows-latest] - steps: - - uses: actions/checkout@v3 - - name: Cache Rust dependencies - uses: Swatinem/rust-cache@v2 - - name: Run tests - run: cargo test --verbose