From 71b7a654ce5d188382cb651c4a8d068c00748d97 Mon Sep 17 00:00:00 2001 From: oech3 <79379754+oech3@users.noreply.github.com> Date: Fri, 20 Mar 2026 13:12:49 +0900 Subject: [PATCH] ci: simplify --- .github/workflows/ci.yml | 17 +++-------------- 1 file changed, 3 insertions(+), 14 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index eedd7095..d37eabcf 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -2,6 +2,9 @@ on: [push, pull_request] name: Basic CI +env: + CARGO_INCREMENTAL: "0" + jobs: check: name: cargo check @@ -21,8 +24,6 @@ jobs: if: matrix.os == 'windows-latest' - name: Check - env: - CARGO_INCREMENTAL: 0 run: | cargo check --all --all-features @@ -44,8 +45,6 @@ jobs: if: matrix.os == 'windows-latest' - name: Test - env: - CARGO_INCREMENTAL: 0 run: | cargo test @@ -54,10 +53,7 @@ jobs: runs-on: ubuntu-latest steps: - uses: actions/checkout@v6 - - run: rustup component add rustfmt - name: cargo fmt - env: - CARGO_INCREMENTAL: 0 run: | cargo fmt --all -- --check @@ -66,10 +62,6 @@ jobs: runs-on: ubuntu-latest steps: - uses: actions/checkout@v6 - - run: rustup component add clippy - - name: cargo clippy - env: - CARGO_INCREMENTAL: 0 run: | cargo clippy --all-targets -- -D warnings @@ -80,8 +72,6 @@ jobs: matrix: os: - ubuntu-latest - toolchain: - - nightly cargo_flags: - "--all-features" steps: @@ -91,7 +81,6 @@ jobs: uses: taiki-e/install-action@cargo-llvm-cov - name: Generate code coverage env: - CARGO_INCREMENTAL: 0 RUSTC_BOOTSTRAP: 1 run: | cargo llvm-cov --all-features --lcov --branch --output-path lcov.info