Skip to content

Commit

Permalink
remove job name for CI
Browse files Browse the repository at this point in the history
  • Loading branch information
o2sh committed Dec 24, 2024
1 parent 59e971d commit 0768404
Showing 1 changed file with 17 additions and 18 deletions.
35 changes: 17 additions & 18 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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

0 comments on commit 0768404

Please sign in to comment.