Skip to content

Commit

Permalink
revert
Browse files Browse the repository at this point in the history
  • Loading branch information
o2sh committed Dec 24, 2024
1 parent 0768404 commit 1d6f57c
Show file tree
Hide file tree
Showing 3 changed files with 21 additions and 21 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/cd.yml
Original file line number Diff line number Diff line change
Expand Up @@ -62,7 +62,7 @@ jobs:
version: ${{ github.event.release.tag_name }}
token: ${{ secrets.WINGET_TOKEN }}

cargo-publish:
crates:
name: Publish to crates.io
runs-on: ubuntu-latest

Expand Down
35 changes: 18 additions & 17 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,26 +16,27 @@ env:
CARGO_TERM_COLOR: always

jobs:
strategy:
matrix:
os: [ubuntu-latest, windows-latest, macOS-latest]
runs-on: ${{ matrix.os }}
CI:
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
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
name: Vercel Deployment CI
name: onefetch.dev CI
on:
push:
branches: ["main"]
Expand Down Expand Up @@ -29,8 +29,7 @@ jobs:

- name: Install Dependencies
run: npm ci
# NOTE Since build is automated by vercel, it's probably
# redundant to test it here, too

- name: Svelte Check
run: npm run check:svelte -- --fail-on-warnings

Expand Down

0 comments on commit 1d6f57c

Please sign in to comment.