Skip to content

Commit 0768404

Browse files
committed
remove job name for CI
1 parent 59e971d commit 0768404

File tree

1 file changed

+17
-18
lines changed

1 file changed

+17
-18
lines changed

.github/workflows/ci.yml

Lines changed: 17 additions & 18 deletions
Original file line numberDiff line numberDiff line change
@@ -16,27 +16,26 @@ env:
1616
CARGO_TERM_COLOR: always
1717

1818
jobs:
19-
CI:
20-
strategy:
21-
matrix:
22-
os: [ubuntu-latest, windows-latest, macOS-latest]
23-
runs-on: ${{ matrix.os }}
19+
strategy:
20+
matrix:
21+
os: [ubuntu-latest, windows-latest, macOS-latest]
22+
runs-on: ${{ matrix.os }}
2423

25-
steps:
26-
- name: Checkout
27-
uses: actions/checkout@v4
24+
steps:
25+
- name: Checkout
26+
uses: actions/checkout@v4
2827

29-
- name: Install Rust
30-
uses: actions-rust-lang/setup-rust-toolchain@v1
28+
- name: Install Rust
29+
uses: actions-rust-lang/setup-rust-toolchain@v1
3130

32-
- name: Build
33-
run: cargo build --features=fail-on-deprecated
31+
- name: Build
32+
run: cargo build --features=fail-on-deprecated
3433

35-
- name: Run tests
36-
run: cargo test
34+
- name: Run tests
35+
run: cargo test
3736

38-
- name: Run onefetch
39-
run: cargo run
37+
- name: Run onefetch
38+
run: cargo run
4039

41-
- name: Run onefetch (with commitgraph)
42-
run: git commit-graph write --no-progress --reachable && cargo run
40+
- name: Run onefetch (with commitgraph)
41+
run: git commit-graph write --no-progress --reachable && cargo run

0 commit comments

Comments
 (0)