Skip to content

Commit 1d6f57c

Browse files
committed
revert
1 parent 0768404 commit 1d6f57c

File tree

3 files changed

+21
-21
lines changed

3 files changed

+21
-21
lines changed

.github/workflows/cd.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -62,7 +62,7 @@ jobs:
6262
version: ${{ github.event.release.tag_name }}
6363
token: ${{ secrets.WINGET_TOKEN }}
6464

65-
cargo-publish:
65+
crates:
6666
name: Publish to crates.io
6767
runs-on: ubuntu-latest
6868

.github/workflows/ci.yml

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

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

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

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

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

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

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

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

.github/workflows/vercel-ci.yml renamed to .github/workflows/web-ci.yml

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
name: Vercel Deployment CI
1+
name: onefetch.dev CI
22
on:
33
push:
44
branches: ["main"]
@@ -29,8 +29,7 @@ jobs:
2929

3030
- name: Install Dependencies
3131
run: npm ci
32-
# NOTE Since build is automated by vercel, it's probably
33-
# redundant to test it here, too
32+
3433
- name: Svelte Check
3534
run: npm run check:svelte -- --fail-on-warnings
3635

0 commit comments

Comments
 (0)