File tree Expand file tree Collapse file tree 3 files changed +21
-21
lines changed Expand file tree Collapse file tree 3 files changed +21
-21
lines changed Original file line number Diff line number Diff line change 62
62
version : ${{ github.event.release.tag_name }}
63
63
token : ${{ secrets.WINGET_TOKEN }}
64
64
65
- cargo-publish :
65
+ crates :
66
66
name : Publish to crates.io
67
67
runs-on : ubuntu-latest
68
68
Original file line number Diff line number Diff line change 16
16
CARGO_TERM_COLOR : always
17
17
18
18
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 }}
23
24
24
- steps :
25
- - name : Checkout
26
- uses : actions/checkout@v4
25
+ steps :
26
+ - name : Checkout
27
+ uses : actions/checkout@v4
27
28
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
30
31
31
- - name : Build
32
- run : cargo build --features=fail-on-deprecated
32
+ - name : Build
33
+ run : cargo build --features=fail-on-deprecated
33
34
34
- - name : Run tests
35
- run : cargo test
35
+ - name : Run tests
36
+ run : cargo test
36
37
37
- - name : Run onefetch
38
- run : cargo run
38
+ - name : Run onefetch
39
+ run : cargo run
39
40
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
Original file line number Diff line number Diff line change 1
- name : Vercel Deployment CI
1
+ name : onefetch.dev CI
2
2
on :
3
3
push :
4
4
branches : ["main"]
29
29
30
30
- name : Install Dependencies
31
31
run : npm ci
32
- # NOTE Since build is automated by vercel, it's probably
33
- # redundant to test it here, too
32
+
34
33
- name : Svelte Check
35
34
run : npm run check:svelte -- --fail-on-warnings
36
35
You can’t perform that action at this time.
0 commit comments