auto-musik

Unnamed repository; edit this file 'description' to name the repository.
Log | Files | Refs | LICENSE

commit 6057d5932f03a20c353e3a3097b01dc3f646c589
parent 98069dbb2cea763049dc779b3857133eae099ce0
Author: Minerva_juppiter <94231606+minerva-jupiter@users.noreply.github.com>
Date:   Fri,  7 Nov 2025 22:18:25 +0900

Update testing.yml
Diffstat:
M.github/workflows/testing.yml | 29+++++++++++++----------------
1 file changed, 13 insertions(+), 16 deletions(-)

diff --git a/.github/workflows/testing.yml b/.github/workflows/testing.yml @@ -11,22 +11,6 @@ env: CARGO_TERM_COLOR: always jobs: - 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: Test Build - run: cargo build --verbose - - name: Run tests - run: cargo test --verbose - check: name: Rustfmt runs-on: ubuntu-latest @@ -42,3 +26,16 @@ jobs: 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