From 0768404cba2b018e55d98718e8c0a7aff416d493 Mon Sep 17 00:00:00 2001 From: o2sh Date: Tue, 24 Dec 2024 16:05:46 +0100 Subject: [PATCH] remove job name for CI --- .github/workflows/ci.yml | 35 +++++++++++++++++------------------ 1 file changed, 17 insertions(+), 18 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 4782a942f..d4828c10b 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -16,27 +16,26 @@ env: CARGO_TERM_COLOR: always jobs: - CI: - strategy: - matrix: - os: [ubuntu-latest, windows-latest, macOS-latest] - runs-on: ${{ matrix.os }} + strategy: + matrix: + os: [ubuntu-latest, windows-latest, macOS-latest] + runs-on: ${{ matrix.os }} - steps: - - name: Checkout - uses: actions/checkout@v4 + steps: + - name: Checkout + uses: actions/checkout@v4 - - name: Install Rust - uses: actions-rust-lang/setup-rust-toolchain@v1 + - name: Install Rust + uses: actions-rust-lang/setup-rust-toolchain@v1 - - name: Build - run: cargo build --features=fail-on-deprecated + - name: Build + run: cargo build --features=fail-on-deprecated - - name: Run tests - run: cargo test + - name: Run tests + run: cargo test - - name: Run onefetch - run: cargo run + - name: Run onefetch + run: cargo run - - name: Run onefetch (with commitgraph) - run: git commit-graph write --no-progress --reachable && cargo run + - name: Run onefetch (with commitgraph) + run: git commit-graph write --no-progress --reachable && cargo run